identityservice-8gx3ff/pyproject.toml
2025-06-05 10:07:49 +00:00

16 lines
352 B
TOML

[tool.ruff]
line-length = 100
target-version = "py38"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W"]
ignore = ["N805"] # Ignore N805 for cls methods in SQLAlchemy and Pydantic
fixable = ["ALL"]
unfixable = []
[tool.ruff.lint.isort]
known-first-party = ["app"]
[tool.ruff.lint.flake8-quotes]
docstring-quotes = "double"
inline-quotes = "double"