
- Set up project structure and dependencies - Create database models and schemas for tasks - Implement CRUD operations for tasks - Add API endpoints for task management - Create Alembic migrations for the database - Add health check endpoint - Implement error handling - Add documentation in README.md
13 lines
349 B
TOML
13 lines
349 B
TOML
[tool.ruff]
|
|
line-length = 88
|
|
target-version = "py39"
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "I", "B", "W", "C90"]
|
|
ignore = ["B008"] # Allow function calls in argument defaults for FastAPI dependencies
|
|
|
|
[tool.ruff.lint.isort]
|
|
known-third-party = ["fastapi", "pydantic", "sqlalchemy", "alembic", "uvicorn"]
|
|
|
|
[tool.ruff.lint.mccabe]
|
|
max-complexity = 10 |