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 1eb396b commit 94a97eaCopy full SHA for 94a97ea
1 file changed
pyproject.toml
@@ -69,12 +69,14 @@ ignore = [
69
"E741", # Ambiguous variable name
70
# ruff ignore
71
"RUF012", # Mutable class attributes should be annotated with `typing.ClassVar`
72
+ "RUF061", # Use context-manager form of `pytest.raises()`
73
# pylint ignore
74
"PLW0603", # Using the global statement
75
"PLW0120", # remove the else and dedent its contents
76
"PLW2901", # for loop variable overwritten by assignment target
77
"PLR5501", # Use `elif` instead of `else` then `if`
78
"UP031", # Use format specifiers instead of percent format
79
+
80
]
81
82
[tool.ruff.lint.isort]
0 commit comments