Files
fastapi-cache/tests/pyproject.toml
Martijn Pieters 23bb4e9cd4 Add pytest-style linting (#159)
This does mean we need to tell pyright that the init_cache auto-use
fixture is still being used even though it now has a leading underscore.
2023-05-16 12:45:26 +00:00

11 lines
181 B
TOML

[tool.ruff]
extend = "../pyproject.toml"
extend-select = [
"PT", # flake8-pytest-style
]
ignore = ["S101"]
[tool.ruff.isort]
known-first-party = ["examples", "fastapi_cache"]