diff options
author | Ben Sima <ben@bsima.me> | 2023-10-03 22:22:45 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2023-10-03 22:22:45 -0400 |
commit | 6107f8178e26ada67e5d5ec60501e24528b3db56 (patch) | |
tree | 6e7d8bc57231b841545c6e3add46eb51c64a5946 /Biz/Lint.hs | |
parent | 4226cbd8020253b010fb44d395db12efe68e1272 (diff) |
Add rundeps feature to bild
This allows me to specify runtime dependencies, not just system or
language deps.
Diffstat (limited to 'Biz/Lint.hs')
-rw-r--r-- | Biz/Lint.hs | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/Biz/Lint.hs b/Biz/Lint.hs index 62ddba7..13150cc 100644 --- a/Biz/Lint.hs +++ b/Biz/Lint.hs @@ -5,18 +5,16 @@ {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE NoImplicitPrelude #-} --- : out lint --- --- these are actually runtime deps, but bild doesn't (yet) distinguish between --- rundeps and sysdeps: +-- | Global linter. -- --- : sys ormolu --- : sys hlint --- : sys black --- : sys ruff --- : sys deadnix --- : sys shellcheck --- : sys indent +-- : out lint +-- : run ormolu +-- : run hlint +-- : run black +-- : run ruff +-- : run deadnix +-- : run shellcheck +-- : run indent module Biz.Lint (main) where import Alpha |