14 lines
298 B
TOML
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"] |