pyproject.toml 314 B

12345678910111213141516171819
  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. "F811", # redefined-while-unused
  16. ]