hass-core/pylint/ruff.toml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
254 B
TOML
Raw Normal View History

2023-06-08 23:43:56 +02:00
# This extend our general Ruff rules specifically for tests
extend = "../pyproject.toml"
2024-04-08 15:43:58 +02:00
[lint]
extend-ignore = [
"INP001", # File is part of an implicit namespace package. Add an `__init__.py`.
]
[lint.isort]
2023-06-08 23:43:56 +02:00
known-third-party = [
"pylint",
]