
- Created FastAPI application structure - Added Todo model and CRUD operations - Added database integration with SQLAlchemy - Added migrations with Alembic - Added health endpoint - Added API documentation with Swagger UI and ReDoc
8 lines
248 B
TOML
8 lines
248 B
TOML
[tool.ruff]
|
|
line-length = 100
|
|
target-version = "py39"
|
|
select = ["E", "F", "I", "W", "N", "B", "A", "COM", "C4", "UP", "S", "BLE", "T10", "ISC", "G"]
|
|
ignore = []
|
|
|
|
[tool.ruff.isort]
|
|
known-third-party = ["fastapi", "sqlalchemy", "pydantic", "alembic"] |