Skip to content

Commit

Permalink
fix(ruff): added RUF012 back
Browse files Browse the repository at this point in the history
  • Loading branch information
tomjeannesson committed Aug 19, 2023
1 parent 7b4aa76 commit b3ea928
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ ignore = [
"D203", # 1 blank line required before class docstring
"D213", # Multi-line docstring summary should start at the first line
"C901", # McCabe complexity is too high
# "RUF012", # Mutable class attributes should be annotated with `typing.ClassVar`
"RUF012", # Mutable class attributes should be annotated with `typing.ClassVar`
]

# Allow autofix for all enabled rules (when `--fix`) is provided
Expand Down

0 comments on commit b3ea928

Please sign in to comment.