Skip to content

Commit ae3d8ca

Browse files
Activate ruff, ignore the typing of classvar
1 parent 1c2613b commit ae3d8ca

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

pyproject.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,14 @@ select = [
8181
"W", # pycodestyle
8282
"B", # bugbear
8383
"I", # isort
84-
# "RUF", # ruff
84+
"RUF", # ruff
8585
"UP", # pyupgrade
8686
]
8787

88+
ignore = [
89+
"RUF012", # Mutable class attributes should be annotated with `typing.ClassVar`
90+
]
91+
8892
[tool.ruff.pydocstyle]
8993
convention = "google"
9094

0 commit comments

Comments
 (0)