From 9a10f244693f4d0c17f4e758e64dbdc014299c9f Mon Sep 17 00:00:00 2001 From: Ben Sima Date: Tue, 21 Dec 2021 21:12:41 -0500 Subject: Enable shellcheck lint and fix its warnings --- Biz/Lint.hs | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) (limited to 'Biz/Lint.hs') diff --git a/Biz/Lint.hs b/Biz/Lint.hs index 38c7403..8d5a757 100644 --- a/Biz/Lint.hs +++ b/Biz/Lint.hs @@ -87,13 +87,13 @@ printResult r@(NoOp path_) = >> pure r changedFiles :: IO [FilePath] -changedFiles = mergeBase +> changed +changedFiles = + git ["merge-base", "HEAD", "origin/master"] + /> filter (/= '\n') + +> (\mb -> git ["diff", "--name-only", "--diff-filter=d", mb]) + /> String.lines where git args = Process.readProcess "git" args "" - mergeBase = git ["merge-base", "HEAD", "origin/master"] /> filter (/= '\n') - changed mb = - String.lines - traverse_ printResult >> results lint shouldFix hlint path_ ] Just (Namespace _ Py) -> [lint shouldFix pylint path_] - Just (Namespace _ Sh) -> [pure <| NoOp path_] -- [lint "shellcheck" [] path_] + Just (Namespace _ Sh) -> [lint shouldFix shellcheck path_] Just (Namespace _ Nix) -> [pure <| NoOp path_] Just (Namespace _ Scm) -> [pure <| NoOp path_] Just _ -> [pure <. Warn <| "no linter for " <> Text.pack path_] -- cgit v1.2.3