[tool.ruff] line-length = 120 target-version = "py38" [tool.ruff.lint] select = ["E", "F", "I", "B", "UP"] ignore = ["B008"] # Allow function calls in argument defaults for FastAPI dependencies [tool.ruff.lint.isort] known-third-party = ["fastapi", "pydantic", "sqlalchemy", "alembic", "jose", "passlib"] [tool.ruff.format] quote-style = "double" indent-style = "space" skip-magic-trailing-comma = false line-ending = "auto"