synapse / backend /pyproject.toml
adwitiyashukla's picture
updated code
48954a5
Raw
History Blame Contribute Delete
306 Bytes
[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"]