[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