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 bc833e3 commit ba441f0Copy full SHA for ba441f0
pyproject.toml
@@ -182,8 +182,12 @@ line-length = 99
182
select = [
183
"F",
184
"E",
185
+ "C",
186
"W",
187
+ "B",
188
"I",
189
+ "SIM",
190
+ "UP",
191
]
192
ignore = [
193
"E203",
@@ -198,6 +202,9 @@ inline-quotes = "single"
198
202
[tool.ruff.lint.extend-per-file-ignores]
199
203
"*/__init__.py" = ["F401"]
200
204
"docs/conf.py" = ["E265"]
205
+"*/test_*.py" = [
206
+ "B018", # Unassigned expressions are fine
207
+]
201
208
209
[tool.ruff.format]
210
quote-style = "single"
0 commit comments