File size: 232 Bytes
fc8bf44 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
[tool.ruff]
line-length = 120
select = ["E", "F", "W", "I"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.11"
ignore_missing_imports = true
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = ["tests"]
|