Fix an error in scripts/add_rule.py (#2497)

This commit is contained in:
Jonathan Plasse 2023-02-02 21:58:11 +01:00 committed by GitHub
parent ee01e666c5
commit b232c43824
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,9 +3,12 @@ select = ["ALL"]
ignore = [
"E501", # line-too-long
"INP001", # implicit-namespace-package
"PLR2004", # magic-value-comparison
"PL", # pylint
"S101", # assert-used
"EM"
"EM", # errmgs
]
unfixable = [
"RUF100", # unused-noqa
]
[tool.ruff.pydocstyle]