about summary refs log tree commit diff stats
path: root/nix
diff options
context:
space:
mode:
Diffstat (limited to 'nix')
-rw-r--r--nix/pre-commit-checks.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/nix/pre-commit-checks.nix b/nix/pre-commit-checks.nix
index a1612ef..10f8ae5 100644
--- a/nix/pre-commit-checks.nix
+++ b/nix/pre-commit-checks.nix
@@ -55,7 +55,10 @@ rec {
 
     check-case-conflicts.enable = true;
     check-symlinks.enable = true;
-    editorconfig-checker.enable = true;
+    editorconfig-checker = {
+      enable = true;
+      excludes = [ "\.md$" ];
+    };
     prettier = {
       enable = true;
       types_or = [ "plain-text" "yaml" "gotmpl" "javascript" ];