From 3c786ae98889e5f044d0af49f8d290e22f4a1d29 Mon Sep 17 00:00:00 2001 From: Matt Sturgeon Date: Mon, 8 Jul 2024 16:14:05 +0100 Subject: [PATCH] flake: ignore unformatted files This suppresses treefmt's "no formatter for path" warnings. --- flake-modules/dev/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/flake-modules/dev/default.nix b/flake-modules/dev/default.nix index 7c9963e4..52f09429 100644 --- a/flake-modules/dev/default.nix +++ b/flake-modules/dev/default.nix @@ -39,8 +39,15 @@ settings = { global.excludes = [ + ".envrc" + ".git-blame-ignore-revs" + ".gitignore" "LICENSE" "flake.lock" + "**.md" + "**.scm" + "**.svg" + "**/man/*.5" ]; }; };