From a95f7a2a4f1b299c37922c20e029620acc1b05ed Mon Sep 17 00:00:00 2001 From: fanghr Date: Wed, 11 May 2022 15:55:47 +0800 Subject: [PATCH] Revert "add subcommand `lint_haskell` to lint haskell code" This reverts commit 27e3033b3be54b5c3895fbfbd4d7b1fd7ef6e901. --- Makefile | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Makefile b/Makefile index c18195c..36a13e3 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,6 @@ usage: @echo " format_haskell -- Format haskell stuff, including source code and cabal files" @echo " format_nix -- Format *.nix files only" @echo " format_check -- Check if all haskell stuff have been formatted correctly" - @echo " lint_haskell -- run hlint on all haskell files" hoogle: pkill hoogle || true @@ -38,9 +37,6 @@ format_check: -not -path './haddock/*' \ | xargs fourmolu $(FORMAT_EXTENSIONS) -m check -lint_haskell: - find -name '*.hs' -not -path './dist*/*' -not -path './haddock/*' | xargs hlint - haddock: cabal haddock --haddock-html --haddock-hoogle --builddir=haddock