10 lines
281 B
TOML
10 lines
281 B
TOML
[tool.ruff]
|
|
line-length = 88
|
|
target-version = "py38"
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "B", "I"]
|
|
ignore = ["B008"] # Allow function calls in argument defaults for FastAPI dependencies
|
|
|
|
[tool.ruff.lint.isort]
|
|
known-third-party = ["fastapi", "pydantic", "sqlalchemy", "alembic"] |