[tool.ruff] | |
line-length = 88 | |
target-version = "py312" | |
[tool.ruff.lint] | |
select = ["E", "W", "F", "I", "B", "UP"] | |
[tool.ruff.format] | |
quote-style = "double" | |
[tool.mypy] | |
python_version = "3.12" | |
ignore_missing_imports = true | |
disallow_untyped_defs = true | |
warn_return_any = true | |
mypy_path = "src" | |
explicit_package_bases = true | |
[tool.pytest.ini_options] | |
testpaths = ["tests"] | |
addopts = "-ra --strict-markers" | |
minversion = "7.0" | |