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:
parent
bf3c942294
commit
41ae95116d
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue