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 ee9c182 commit 2d2bcd8Copy full SHA for 2d2bcd8
pyproject.toml
@@ -292,6 +292,8 @@ extend-select = [
292
"PERF", # Perflint
293
"PIE", # flake8-pie
294
"PGH", # pygrep-hooks
295
+ "PLE", # Pylint Error
296
+ "PLR", # Pylint Refactor
297
"PT", # flake8-pytest-style
298
"PYI", # flake8-pyi
299
"RET", # flake8-return
@@ -306,6 +308,15 @@ extend-select = [
306
308
]
307
309
ignore = [
310
"ANN401",
311
+ "PLR0124",
312
+ "PLR0904",
313
+ "PLR0911",
314
+ "PLR0912",
315
+ "PLR0913",
316
+ "PLR0914",
317
+ "PLR0915",
318
+ "PLR0917",
319
+ "PLR2004",
320
"PT011", # TODO: apply this rule
321
"RET505",
322
"RET506",
0 commit comments