| 123456789101112131415 |
- [tool.pytest.ini_options]
- testpaths = ["tests"]
- addopts = "-q"
- pythonpath = ["."]
- [tool.ruff]
- line-length = 100
- target-version = "py39"
- [tool.ruff.lint]
- select = ["E", "F", "I", "UP", "B", "ASYNC", "RUF"]
- ignore = ["RUF001", "UP045"]
- [tool.ruff.lint.isort]
- known-first-party = ["app"]
|