mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
misc/statix: disable the "bool_comparison" lint
This commit is contained in:
parent
d41704233a
commit
5066c71549
1 changed files with 7 additions and 1 deletions
|
@ -34,7 +34,13 @@
|
||||||
check = true;
|
check = true;
|
||||||
format = true;
|
format = true;
|
||||||
};
|
};
|
||||||
statix.enable = true;
|
statix = {
|
||||||
|
enable = true;
|
||||||
|
disabled-lints = [
|
||||||
|
# We often use `nullable == true`
|
||||||
|
"bool_comparison"
|
||||||
|
];
|
||||||
|
};
|
||||||
stylua.enable = true;
|
stylua.enable = true;
|
||||||
shfmt.enable = true;
|
shfmt.enable = true;
|
||||||
# FIXME: re-enable on darwin, currently broken: taplo with options '[format]' failed to apply: exit status 101
|
# FIXME: re-enable on darwin, currently broken: taplo with options '[format]' failed to apply: exit status 101
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue