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 d847a06 commit b409cb6Copy full SHA for b409cb6
pyproject.toml
@@ -66,16 +66,16 @@ line-length = 120
66
67
[tool.ruff]
68
line-length = 120
69
-select = [
+lint.select = [
70
+ "B", # bugbear
71
"E", # pycodestyle
72
"F", # pyflakes
- "W", # pycodestyle
73
- "B", # bugbear
74
"I", # isort
75
"RUF", # ruff
76
"UP", # pyupgrade
+ "W", # pycodestyle
77
]
78
-ignore = [
+lint.ignore = [
79
"RUF012", # Mutable class attributes should be annotated with `typing.ClassVar`
80
81
0 commit comments