Commit a43a0603dbdf

Vincent Demeester <vincent@sbr.pm>
2026-01-13 15:58:55
fix(pre-commit): exclude problematic files from hooks
- Exclude corfu-terminal.el and goose.el from elisp byte-compile - Add shellcheck disable directives to nix-store-analyzer.sh Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 6a75e15
Changed files (2)
tools/nix-store-analyzer.sh
@@ -6,6 +6,8 @@
 #   ./nix-store-analyzer.sh              # Analyze local machine
 #   ./nix-store-analyzer.sh host.vpn     # Analyze remote host via SSH
 #   ./nix-store-analyzer.sh user@host    # Analyze remote host with specific user
+#
+# shellcheck disable=SC2016,SC2034,SC2046,SC2086
 
 set -euo pipefail
 
flake.nix
@@ -245,6 +245,8 @@
                 "dots/\\.config/emacs/transient/.*"
                 "dots/\\.config/emacs/custom\\.el"
                 "dots/\\.config/emacs/\\.chatgpt-shell\\.el"
+                "dots/\\.config/emacs/site-lisp/corfu-terminal\\.el"
+                "dots/\\.config/emacs/site-lisp/goose\\.el"
                 "\\.dir-locals\\.el"
               ];
             };