-
Notifications
You must be signed in to change notification settings - Fork 9
/
codeclimate-shellcheck.cabal
87 lines (82 loc) · 1.88 KB
/
codeclimate-shellcheck.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
name: codeclimate-shellcheck
version: 0.1.0.0
synopsis: Code Climate engine that wraps ShellCheck
homepage: https://github.com/filib/codeclimate-shellcheck
license: GPL-3
license-file: LICENSE
author: Philip Cunningham
maintainer: [email protected]
category: Static Analysis
build-type: Simple
cabal-version: >=1.10
description:
codeclimate-shellcheck is a Code Climate engine that wraps ShellCheck.
You can run it on your command line using the Code Climate CLI, or on our
hosted analysis platform.
Source-repository head
type: git
location: https://github.com/filib/codeclimate-shellcheck
library
exposed-modules:
CC
CC.ShellCheck.Analyze
CC.ShellCheck.Env
CC.ShellCheck.Fingerprint
CC.ShellCheck.ShellScript
CC.ShellCheck.Types
CC.Types
Data.Shebang
build-depends:
base >= 4.7 && <= 5
, aeson
, attoparsec
, bytestring
, containers
, directory
, extra
, filepath
, Glob
, pureMD5
, ShellCheck == 0.7.0
, text
, yaml
hs-source-dirs: src
ghc-options: -Wall
default-language: Haskell2010
executable codeclimate-shellcheck
main-is:
Main.hs
other-modules:
CLI
build-depends:
base >= 4.7 && <= 5
, codeclimate-shellcheck
, optparse-applicative
hs-source-dirs: app
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
test-suite codeclimate-shellcheck-test
main-is:
Spec.hs
other-modules:
CC.ShellCheck.FingerprintSpec
type: exitcode-stdio-1.0
build-depends:
base >= 4.7 && <= 5
, codeclimate-shellcheck
, aeson
, aeson-qq
, bytestring
, directory
, filepath
, ShellCheck
, string-qq
, tasty
, tasty-hspec
, tasty-hunit
, text
, temporary
, hspec
hs-source-dirs: test
ghc-options: -Wall
default-language: Haskell2010