From e37385c8939feafb8d7a197eb27353c7730d10f8 Mon Sep 17 00:00:00 2001 From: Taimoor Zaeem Date: Mon, 30 Jun 2025 11:05:01 +0500 Subject: [PATCH] nix: run hlint on multiple threads --- nix/tools/style.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/tools/style.nix b/nix/tools/style.nix index 1d514580f..b1292d684 100644 --- a/nix/tools/style.nix +++ b/nix/tools/style.nix @@ -74,7 +74,7 @@ let echo "Linting Haskell files..." # --vimgrep fixes a bug in ag: https://github.com/ggreer/the_silver_searcher/issues/753 ${silver-searcher}/bin/ag -l --vimgrep -g '\.l?hs$' . \ - | xargs ${hlint}/bin/hlint -X QuasiQuotes -X NoPatternSynonyms + | xargs ${hlint}/bin/hlint -j -X QuasiQuotes -X NoPatternSynonyms ''; in