Skip to content

Commit b409cb6

Browse files
[ruff] Fix the section of select in the pyproject.toml
1 parent d847a06 commit b409cb6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,16 +66,16 @@ line-length = 120
6666

6767
[tool.ruff]
6868
line-length = 120
69-
select = [
69+
lint.select = [
70+
"B", # bugbear
7071
"E", # pycodestyle
7172
"F", # pyflakes
72-
"W", # pycodestyle
73-
"B", # bugbear
7473
"I", # isort
7574
"RUF", # ruff
7675
"UP", # pyupgrade
76+
"W", # pycodestyle
7777
]
78-
ignore = [
78+
lint.ignore = [
7979
"RUF012", # Mutable class attributes should be annotated with `typing.ClassVar`
8080
]
8181

0 commit comments

Comments
 (0)