Files
fastapi-cache/tests/pyproject.toml
Martijn Pieters 230c24a4e0 Give tests and examples separate ruff configs (#158)
This allows more fine-grained lint rule adjustments, and allows
the examples to treat fastapi_cache as a 'third party' module, just
like users of the library would use it.
2023-05-16 12:42:12 +00:00

8 lines
129 B
TOML

[tool.ruff]
extend = "../pyproject.toml"
ignore = ["S101"]
[tool.ruff.isort]
known-first-party = ["examples", "fastapi_cache"]