Files
core/script/ruff.toml

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

12 lines
265 B
TOML
Raw Permalink Normal View History

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