core/script/ruff.toml

12 lines
265 B
TOML
Raw Permalink Normal View History

2023-06-08 21:43:56 +00:00
# This extend our general Ruff rules specifically for tests
extend = "../pyproject.toml"
[lint.isort]
2023-06-08 21:43:56 +00:00
forced-separate = [
"tests",
]
[lint.flake8-tidy-imports.banned-api]
"async_timeout".msg = "use asyncio.timeout instead"
"pytz".msg = "use zoneinfo instead"