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 286bef8 commit 8dc4a92Copy full SHA for 8dc4a92
pyproject.toml
@@ -304,6 +304,8 @@ extend-select = [
304
"PERF", # Perflint
305
"PIE", # flake8-pie
306
"PGH", # pygrep-hooks
307
+ "PLE", # Pylint Error
308
+ "PLR", # Pylint Refactor
309
"PT", # flake8-pytest-style
310
"PYI", # flake8-pyi
311
"RET", # flake8-return
@@ -318,6 +320,15 @@ extend-select = [
318
320
]
319
321
ignore = [
322
"ANN401",
323
+ "PLR0124",
324
+ "PLR0904",
325
+ "PLR0911",
326
+ "PLR0912",
327
+ "PLR0913",
328
+ "PLR0914",
329
+ "PLR0915",
330
+ "PLR0917",
331
+ "PLR2004",
332
"PT011", # TODO: apply this rule
333
"PT012", # TODO: apply this rule
334
"RET505",
0 commit comments