lint: Ignore test functions in vulture
These aren't unused, but discovered/enumerated by `unittest` or `pytest`.
This commit is contained in:
parent
8299216e27
commit
a6ef3a1643
1 changed files with 5 additions and 0 deletions
|
|
@ -42,3 +42,8 @@ mark-parentheses = false
|
||||||
|
|
||||||
[tool.ruff.lint.isort]
|
[tool.ruff.lint.isort]
|
||||||
known-first-party = ["cockpit"]
|
known-first-party = ["cockpit"]
|
||||||
|
|
||||||
|
[tool.vulture]
|
||||||
|
ignore_names = [
|
||||||
|
"test[A-Z0-9]*",
|
||||||
|
]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue