We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc5ca27 commit 106fe07Copy full SHA for 106fe07
pyproject.toml
@@ -309,6 +309,8 @@ extend-select = [
309
"PERF", # Perflint
310
"PIE", # flake8-pie
311
"PGH", # pygrep-hooks
312
+ "PLE", # Pylint Error
313
+ "PLR", # Pylint Refactor
314
"PT", # flake8-pytest-style
315
"PYI", # flake8-pyi
316
"RET", # flake8-return
@@ -323,6 +325,15 @@ extend-select = [
323
325
]
324
326
ignore = [
327
"ANN401",
328
+ "PLR0124",
329
+ "PLR0904",
330
+ "PLR0911",
331
+ "PLR0912",
332
+ "PLR0913",
333
+ "PLR0914",
334
+ "PLR0915",
335
+ "PLR0917",
336
+ "PLR2004",
337
"PT011", # TODO: apply this rule
338
"PT030", # TODO: apply this rule
339
"PT031", # TODO: apply this rule
0 commit comments