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