netbox/ruff.toml

16 lines
248 B
TOML
Raw Normal View History

exclude = [
"netbox/project-static/**"
]
line-length = 120
[lint]
extend-select = ["E1", "E2", "E3", "E501", "W"]
ignore = ["F403", "F405"]
2024-11-07 10:24:15 -05:00
preview = true
[lint.per-file-ignores]
"template_code.py" = ["E501"]
[format]
quote-style = "single"