ignore new ruff rule

This commit is contained in:
Gabriel Augendre 2023-06-27 19:29:46 +02:00
parent 5e988cd6c1
commit f072ebee4a

View file

@ -15,6 +15,7 @@ ignore = [
"E501", # long lines
"D1", # missing docstring
"TRY003", # Avoid specifying long messages outside the exception class
"RUF012", # Mutable class attributes should be annotated with `typing.ClassVar`
]
[tool.ruff.per-file-ignores]