ruff.toml 248 B

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