From 2d421b30ad6efc96b7deb653ea8fcc4d570a75f5 Mon Sep 17 00:00:00 2001 From: Sumner Evans Date: Wed, 28 Apr 2021 13:59:51 -0600 Subject: [PATCH] format: removed exceptions already formatted files (#1954) Removed format exclusion exceptions for modules that are already formatted correctly (that is, when running nixfmt, no changes happen) or have been moved (in the case of i3.nix). --- format | 3 --- 1 file changed, 3 deletions(-) diff --git a/format b/format index 17ff2013f..358a64018 100755 --- a/format +++ b/format @@ -32,7 +32,6 @@ find . -name '*.nix' \ ! -path ./modules/programs/bash.nix \ ! -path ./modules/programs/firefox.nix \ ! -path ./modules/programs/gpg.nix \ - ! -path ./modules/programs/lesspipe.nix \ ! -path ./modules/programs/ssh.nix \ ! -path ./modules/programs/tmux.nix \ ! -path ./modules/programs/zsh.nix \ @@ -41,11 +40,9 @@ find . -name '*.nix' \ ! -path ./modules/services/keybase.nix \ ! -path ./modules/services/mpd.nix \ ! -path ./modules/services/sxhkd.nix \ - ! -path ./modules/services/window-managers/i3.nix \ ! -path ./modules/systemd.nix \ ! -path ./nix-darwin/default.nix \ ! -path ./tests/default.nix \ - ! -path ./tests/modules/home-environment/default.nix \ ! -path ./tests/modules/home-environment/session-variables.nix \ ! -path ./tests/modules/programs/gpg/override-defaults.nix \ ! -path ./tests/modules/programs/zsh/session-variables.nix \