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