blob: 02245750dd19dde988d747a901ab764794195abf (
plain)
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
|
cabal-version: 3.0
name: linters-common
version: 0.1.0.0
synopsis: Common library for GHC linting scripts
license: GPL-3.0-only
author: The GHC team
build-type: Simple
library
default-language:
Haskell2010
build-depends:
process
^>= 1.6,
base
>= 4.14 && < 5,
text
>= 1.2 && < 2.1,
deepseq
>= 1.1,
hs-source-dirs:
.
ghc-options:
-Wall
exposed-modules:
Linters.Common
|