1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-29 11:07:44 +00:00

helix(rust): disable inactive-code and unlinked-file diagnostics

This commit is contained in:
RGBCube 2025-05-28 21:52:18 +03:00
parent abde245bbb
commit 08362e8c88
Signed by: RGBCube
SSH key fingerprint: SHA256:CzqbPcfwt+GxFYNnFVCqoN5Itn4YFrshg1TrnACpA5M

View file

@ -147,6 +147,7 @@ in {
check.command = "clippy"; check.command = "clippy";
completion.callable.snippets = "add_parentheses"; completion.callable.snippets = "add_parentheses";
completion.excludeTraits = [ "yansi::Paint" ]; completion.excludeTraits = [ "yansi::Paint" ];
diagnostics.disabled = [ "inactive-code" "unlinked-file" ];
}; };
}; };