9 lines
324 B
TOML
9 lines
324 B
TOML
|
|
# statix lint config. Two default lints are disabled because they flag this
|
||
|
|
# repo's intentional house style, not bugs:
|
||
|
|
# repeated_keys - we use `foo.a = ...; foo.b = ...;` (dotted) over nesting.
|
||
|
|
# empty_pattern - module files use `{ ... }:` / `{ }:` deliberately.
|
||
|
|
disabled = [
|
||
|
|
"repeated_keys",
|
||
|
|
"empty_pattern",
|
||
|
|
]
|