todoapi-b6jsll/pyproject.toml
2025-05-26 18:53:00 +00:00

19 lines
338 B
TOML

[tool.ruff]
line-length = 88
target-version = "py39"
exclude = [
".git",
".ruff_cache",
".venv",
"venv",
"migrations",
]
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
ignore = []
fixable = ["ALL"]
unfixable = []
[tool.ruff.lint.isort]
known-third-party = ["fastapi", "pydantic", "sqlalchemy", "alembic", "uvicorn"]