File tree 1 file changed +8
-1
lines changed
1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -86,7 +86,14 @@ in (import sources.nixpkgs
86
86
# default_stages = ["manual" "push"];
87
87
hooks = {
88
88
stylish-haskell . enable = true ;
89
- stylish-haskell . excludes = [ "^Setup.hs$" "test/testdata/.*$" "test/data/.*$" "^hie-compat/.*$" "^plugins/hls-tactics-plugin/.*$" ] ;
89
+ stylish-haskell . excludes = [
90
+ # Ignored files
91
+ "^Setup.hs$" "test/testdata/.*$" "test/data/.*$" "test/manual/lhs/.*$" "^hie-compat/.*$" "^plugins/hls-tactics-plugin/.*$"
92
+
93
+ # Temporarily ignored files
94
+ # Stylish-haskell (and other formatters) does not work well with some CPP usages in these files
95
+ "^ghcide/src/Development/IDE/GHC/Compat.hs$" "^plugins/hls-splice-plugin/src/Ide/Plugin/Splice.hs$" "^ghcide/test/exe/Main.hs$" "ghcide/src/Development/IDE/Core/Rules.hs" "^hls-test-utils/src/Test/Hls/Util.hs$"
96
+ ] ;
90
97
} ;
91
98
} ;
92
99
}
You can’t perform that action at this time.
0 commit comments