ruff.toml 273 B

12345678910111213141516
  1. exclude = [
  2. "netbox/project-static/**"
  3. ]
  4. line-length = 120
  5. target-version = "py312"
  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. [format]
  13. quote-style = "single"