2
0

ruff.toml 304 B

1234567891011121314151617
  1. exclude = [
  2. "netbox/project-static/**"
  3. ]
  4. line-length = 120
  5. target-version = "py310"
  6. [lint]
  7. extend-select = ["E1", "E2", "E3", "E501", "W"]
  8. ignore = ["F403", "F405"]
  9. preview = true
  10. [lint.per-file-ignores]
  11. "template_code.py" = ["E501"]
  12. "*/migrations/*.py" = ["E501"]
  13. [format]
  14. quote-style = "single"