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 0f0563b commit 93b6464Copy full SHA for 93b6464
pyproject.toml
@@ -308,6 +308,8 @@ extend-select = [
308
"PERF", # Perflint
309
"PIE", # flake8-pie
310
"PGH", # pygrep-hooks
311
+ "PLE", # Pylint Error
312
+ "PLR", # Pylint Refactor
313
"PT", # flake8-pytest-style
314
"PYI", # flake8-pyi
315
"RET", # flake8-return
@@ -322,6 +324,15 @@ extend-select = [
322
324
]
323
325
ignore = [
326
"ANN401",
327
+ "PLR0124",
328
+ "PLR0904",
329
+ "PLR0911",
330
+ "PLR0912",
331
+ "PLR0913",
332
+ "PLR0914",
333
+ "PLR0915",
334
+ "PLR0917",
335
+ "PLR2004",
336
"PT011", # TODO: apply this rule
337
"PT012", # TODO: apply this rule
338
"PT030", # TODO: apply this rule
0 commit comments