-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhlint-scan.cabal
112 lines (106 loc) · 2.5 KB
/
hlint-scan.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.37.0.
--
-- see: https://github.com/sol/hpack
name: hlint-scan
version: 1.3.0
synopsis: Code scanning GitHub action using HLint.
description: Scans code with HLint and uploads its analysis results to GitHub code scanning.
This is intended to be used as a standalone application on GitHub and not a library.
See <https://github.com/haskell-actions/hlint-scan>.
category: GitHub, Development
homepage: https://github.com/haskell-actions/hlint-scan#readme
bug-reports: https://github.com/haskell-actions/hlint-scan/issues
author: Yoo Chung
maintainer: [email protected]
copyright: Copyright 2023 Google LLC
license: Apache-2.0
license-file: LICENSE
build-type: Simple
extra-source-files:
action.yaml
Dockerfile
LICENSE
README.md
docs/CHANGELOG.md
docs/CODE_OF_CONDUCT.md
docs/CONTRIBUTING.md
docs/pull-scan.png
docs/security-scan.png
docs/SECURITY.md
source-repository head
type: git
location: https://github.com/haskell-actions/hlint-scan
library
exposed-modules:
Arguments
AutomationDetails
FilePath
Fingerprint
Format
Rules
Scan
SpecialOutput
Upload
other-modules:
Paths_hlint_scan
hs-source-dirs:
src
default-extensions:
OverloadedStrings
ghc-options: -Wall -Werror -O2
build-depends:
aeson
, base
, base64
, bytestring
, containers
, filepath
, github-rest
, process
, text
, vector
, zlib
default-language: GHC2021
executable hlint-scan
main-is: Main.hs
hs-source-dirs:
app
default-extensions:
OverloadedStrings
ghc-options: -Wall -Werror -O2 -threaded -rtsopts -with-rtsopts=-N
build-depends:
base
, hlint-scan
default-language: GHC2021
test-suite spec
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
ArgumentsSpec
AutomationDetailsSpec
FilePathSpec
FingerprintSpec
FormatSpec
RulesSpec
SpecialOutputSpec
UploadSpec
hs-source-dirs:
test
default-extensions:
OverloadedStrings
ghc-options: -Wall -Werror -O2 -threaded -rtsopts -with-rtsopts=-N
build-depends:
QuickCheck
, aeson
, base
, base64
, bytestring
, github-rest
, hlint-scan
, hspec
, quickcheck-instances
, text
, vector
, zlib
default-language: GHC2021