File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -1837,6 +1837,14 @@ in
1837
1837
example = "*.nix" ;
1838
1838
} ;
1839
1839
1840
+ force-exclude =
1841
+ mkOption {
1842
+ type = types . bool ;
1843
+ description = "Respect excluded files even for paths passed explicitly." ;
1844
+ default = true ;
1845
+ example = false ;
1846
+ } ;
1847
+
1840
1848
format =
1841
1849
mkOption {
1842
1850
type = types . enum [ "silent" "brief" "long" "json" ] ;
@@ -4000,7 +4008,8 @@ lib.escapeShellArgs (lib.concatMap (ext: [ "--ghc-opt" "-X${ext}" ]) hooks.fourm
4000
4008
[ ( config != { } ) "--config ${ configFile } " ]
4001
4009
[ ( configPath != "" && config == { } ) "--config ${ configPath } " ]
4002
4010
[ diff "--diff" ]
4003
- [ ( exclude != "" ) "--exclude ${ exclude } --force-exclude" ]
4011
+ [ ( exclude != "" ) "--exclude ${ exclude } " ]
4012
+ [ force-exclude " --force-exclude" ]
4004
4013
[ ( format != "long" ) "--format ${ format } " ]
4005
4014
[ hidden "--hidden" ]
4006
4015
[ ( locale != "en" ) "--locale ${ locale } " ]
You can’t perform that action at this time.
0 commit comments