Reformat ShellCheck.cabal for readability

Uses one line per `build-depends' or `exposed-modules'. Also got them
sorted by name. Folded `base' dependencies into a single one.
This commit is contained in:
Dridi Boukelmoune 2014-02-28 19:44:09 +01:00
parent bf3c942294
commit 41ae95116d
1 changed files with 14 additions and 2 deletions

View File

@ -28,8 +28,20 @@ source-repository head
location: git://github.com/koalaman/shellcheck.git
library
build-depends: base >= 4, base < 5, parsec, containers, regex-compat, mtl, directory, json
exposed-modules: ShellCheck.AST, ShellCheck.Data, ShellCheck.Parser, ShellCheck.Analytics, ShellCheck.Simple
build-depends:
base >= 4 && < 5,
containers,
directory,
json,
mtl,
parsec,
regex-compat
exposed-modules:
ShellCheck.Analytics
ShellCheck.AST
ShellCheck.Data
ShellCheck.Parser
ShellCheck.Simple
executable shellcheck
main-is: shellcheck.hs