pyproject.toml 277 B

1234567891011121314151617
  1. [project]
  2. requires-python = ">=3.10"
  3. [tool.ruff]
  4. exclude = [
  5. "__init__.py",
  6. "tests/",
  7. ]
  8. line-length = 120
  9. [tool.ruff.lint]
  10. ignore-init-module-imports = true
  11. select = [
  12. "F401", # unused-import
  13. "I001", # unsorted-imports
  14. "I002", # missing-required-import
  15. ]