Spaces:
Running
Running
| [tool.ruff] | |
| line-length = 100 | |
| target-version = "py310" | |
| [tool.ruff.lint] | |
| select = ["E", "F", "W", "I", "B", "UP"] | |
| ignore = ["E501", "B008"] | |
| [tool.ruff.lint.per-file-ignores] | |
| "tests/conftest.py" = ["E402"] | |
| "app/database.py" = ["F401"] | |
| [tool.pytest.ini_options] | |
| asyncio_mode = "auto" | |
| testpaths = ["tests"] | |