Files
netbox/ruff.toml
Martin Hauser 9be5aa188c chore(ruff): Update target Python version to 3.12 (#21405)
Set the `target-version` in `ruff.toml` to Python 3.12. Ensures the
linter aligns with the version used in the project's environment.

Fixes #21404
2026-02-13 10:39:09 -08:00

17 lines
273 B
TOML

exclude = [
"netbox/project-static/**"
]
line-length = 120
target-version = "py312"
[lint]
extend-select = ["E1", "E2", "E3", "E501", "W"]
ignore = ["F403", "F405"]
preview = true
[lint.per-file-ignores]
"template_code.py" = ["E501"]
[format]
quote-style = "single"