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 189180f commit 446946bCopy full SHA for 446946b
pyproject.toml
@@ -220,7 +220,7 @@ omit= [
220
[tool.ruff]
221
target-version = "py312"
222
223
-select = [
+lint.select = [
224
"B002", # Python does not support the unary prefix increment
225
"B007", # Loop control variable {name} not used within loop body
226
"B014", # Exception handler with duplicate exception
@@ -287,7 +287,7 @@ select = [
287
"W", # pycodestyle
288
]
289
290
-ignore = [
+lint.ignore = [
291
"D202", # No blank lines allowed after function docstring
292
"D203", # 1 blank line required before class docstring
293
"D213", # Multi-line docstring summary should start at the second line
0 commit comments