Files
nix-config/statix.toml
2026-04-05 14:49:16 -05:00

20 lines
673 B
TOML

# Disable lint rules that generate excessive false-positives or noise.
#
# manual_inherit / manual_inherit_from: very high volume of style suggestions.
# useless_parens: many intentional parentheses for readability.
# empty_pattern: { ... }: is a valid and readable no-arg pattern.
disabled = [
"manual_inherit",
"manual_inherit_from",
"useless_parens",
"empty_pattern", # needed for some overlays
]
# Exclude files where statix's parser fails on complex shell-in-Nix content.
ignore = [
"modules/home/programs/update-checker/default.nix",
"modules/home/programs/waybar/scripts/weather.nix",
"modules/home/programs/waybar/scripts/media.nix",
"qemu.nix",
]