Centralizes ruff linter configuration at project root with consistent line length (120 chars), Python 3.12 target, and exclusions for external dependencies and build artifacts.
5 lines
118 B
TOML
5 lines
118 B
TOML
[tool.ruff]
|
|
line-length = 120
|
|
target-version = "py312"
|
|
exclude = ["fail2ban-master", "node_modules", "dist", ".vite"]
|