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