pyproject.toml 288 B

123456789101112131415
  1. [tool.pytest.ini_options]
  2. testpaths = ["tests"]
  3. addopts = "-q"
  4. pythonpath = ["."]
  5. [tool.ruff]
  6. line-length = 100
  7. target-version = "py39"
  8. [tool.ruff.lint]
  9. select = ["E", "F", "I", "UP", "B", "ASYNC", "RUF"]
  10. ignore = ["RUF001", "UP045"]
  11. [tool.ruff.lint.isort]
  12. known-first-party = ["app"]