2025-05-16 04:32:55 +00:00

14 lines
298 B
TOML

[tool.ruff]
target-version = "py38"
line-length = 100
select = [
"E", # pycodestyle errors
"F", # pyflakes
"I", # isort
"W", # pycodestyle warnings
"N", # pep8-naming
]
ignore = []
[tool.ruff.isort]
known-third-party = ["fastapi", "sqlalchemy", "pydantic", "alembic"]