Skip to content
Snippets Groups Projects
pyproject.toml 262 B
[tool.ruff]
line-length = 120
target-version = "py313"
lint.select = ["E", "F", "I", "B", "UP", "N"]
lint.fixable = ["ALL"]
exclude = ["tests", "docs", "build"]

[tool.mypy]
python_version = "3.13"
strict = true
warn_unused_ignores = true
warn_return_any = true