mirror of
https://github.com/astral-sh/ruff.git
synced 2025-12-04 17:51:57 +00:00
Fix an error in scripts/add_rule.py (#2497)
This commit is contained in:
parent
ee01e666c5
commit
b232c43824
1 changed files with 8 additions and 5 deletions
|
|
@ -1,11 +1,14 @@
|
|||
[tool.ruff]
|
||||
select = ["ALL"]
|
||||
ignore = [
|
||||
"E501", # line-too-long
|
||||
"INP001", # implicit-namespace-package
|
||||
"PLR2004", # magic-value-comparison
|
||||
"S101", # assert-used
|
||||
"EM"
|
||||
"E501", # line-too-long
|
||||
"INP001", # implicit-namespace-package
|
||||
"PL", # pylint
|
||||
"S101", # assert-used
|
||||
"EM", # errmgs
|
||||
]
|
||||
unfixable = [
|
||||
"RUF100", # unused-noqa
|
||||
]
|
||||
|
||||
[tool.ruff.pydocstyle]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue