mirror of
https://github.com/home-assistant/core.git
synced 2026-09-16 13:38:26 +01:00
13 lines
307 B
TOML
13 lines
307 B
TOML
# This extend our general Ruff rules specifically for tests
|
|
extend = "../pyproject.toml"
|
|
|
|
[lint.isort]
|
|
forced-separate = [
|
|
"tests",
|
|
]
|
|
|
|
[lint.flake8-tidy-imports.banned-api]
|
|
"async_timeout".msg = "use asyncio.timeout instead"
|
|
"pytz".msg = "use zoneinfo instead"
|
|
"voluptuous".msg = "use probatio instead"
|