Skip to content

Commit 46b368e

Browse files
committed
typos: add force-exclude setting (default true)
Although that is not the solution for the performance problems (in form of huge amounts of resources are consumed) of `typos` discussed in [0], referenced discussions, and the previous commit, this is technically the right thing to do and what users expect. [0]: #405
1 parent f826a04 commit 46b368e

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

modules/hooks.nix

+11-1
Original file line numberDiff line numberDiff line change
@@ -1476,6 +1476,15 @@ in
14761476
example = "*.nix";
14771477
};
14781478

1479+
force-exclude =
1480+
mkOption {
1481+
type = types.bool;
1482+
description = lib.mdDoc "Respect excluded files from config file even for paths passed explicitly";
1483+
# This must be true as this is the natural behaviour. Similar to when executing `typos`
1484+
# from the cmdline.
1485+
default = true;
1486+
};
1487+
14791488
format =
14801489
mkOption {
14811490
type = types.enum [ "silent" "brief" "long" "json" ];
@@ -3375,7 +3384,8 @@ lib.escapeShellArgs (lib.concatMap (ext: [ "--ghc-opt" "-X${ext}" ]) hooks.ormol
33753384
# Config file always exists (we generate one if not).
33763385
[ true "--config ${pathToConfigFile}" ]
33773386
[ diff "--diff" ]
3378-
[ (exclude != "") "--exclude ${exclude} --force-exclude" ]
3387+
[ (exclude != "") "--exclude ${exclude}" ]
3388+
[ (force-exclude) "--force-exclude" ]
33793389
[ (format != "long") "--format ${format}" ]
33803390
[ hidden "--hidden" ]
33813391
[ (locale != "en") "--locale ${locale}" ]

0 commit comments

Comments
 (0)