From 08362e8c88f251bd1ef1b0d4d43a3bb417cc084c Mon Sep 17 00:00:00 2001 From: RGBCube Date: Wed, 28 May 2025 21:52:18 +0300 Subject: [PATCH] helix(rust): disable inactive-code and unlinked-file diagnostics --- modules/common/helix.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/common/helix.nix b/modules/common/helix.nix index edc08eb..da8c75a 100644 --- a/modules/common/helix.nix +++ b/modules/common/helix.nix @@ -147,6 +147,7 @@ in { check.command = "clippy"; completion.callable.snippets = "add_parentheses"; completion.excludeTraits = [ "yansi::Paint" ]; + diagnostics.disabled = [ "inactive-code" "unlinked-file" ]; }; };