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

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