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 0af5142 commit 2c10d93Copy full SHA for 2c10d93
pyproject.toml
@@ -261,12 +261,18 @@ ignore = [
261
"PLR0912",
262
# Too many statements
263
"PLR0915",
264
+ # Global statements are discouraged
265
+ "PLW0603",
266
267
# Additional checks that don't pass yet
268
# Within an except clause, raise exceptions with ...
269
"B904",
270
# Magic number
271
"PLR2004",
272
+ # Outer loop variable overwritten by inner assignment
273
+ "PLW2901",
274
+ # Consider `elif` instead of `else` then `if` to remove indendation level
275
+ "PLR5501",
276
]
277
278
exclude = [
0 commit comments