We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e8d8e6 commit ff0a92dCopy full SHA for ff0a92d
1 file changed
pyproject.toml
@@ -170,12 +170,13 @@
170
"N806", # Variable `xx` in function should be lowercase
171
"N999", # Invalid module name
172
173
+ "PLW0602", # Using global for `xxx` but no assignment is done
174
+ "PLW0603", # Using the global statement to update `xxx` is discouraged
175
+ "PLW0717", # too many statements in try block
176
"PLR0911", # Too many return statements
177
"PLR0912", # Too many branches
178
"PLR0914", # Too many local variables
179
"PLR0913", # Too many arguments in function definition
- "PLW0603", # Using the global statement to update `xxx` is discouraged
- "PLW0602", # Using global for `xxx` but no assignment is done
180
181
"RUF001", # String contains ambiguous utf8 char
182
"RUF067", # `__init__` module should only contain docstrings and re-exports
0 commit comments