-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhs-inspector.cabal
47 lines (44 loc) · 1.32 KB
/
hs-inspector.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
-- Initial y.cabal generated by cabal init. For further documentation, see
-- http://haskell.org/cabal/users-guide/
name: hs-inspector
version: 0.5.2.0
license: MIT
license-file: LICENSE
author: Franco Leonardo Bulgarelli
maintainer: flbulgarelli@frba.utn.edu.ar
category: Language
build-type: Simple
cabal-version: >=1.10
synopsis: Haskell source code analyzer
description: Simple package for detecting usage of certain Haskell features on a module source code
library
default-language: Haskell2010
ghc-options:
-Wall
-fno-warn-missing-signatures
hs-source-dirs:
src
exposed-modules:
Language.Haskell.Names
Language.Haskell.Explorer
Language.Haskell.Inspector
Language.Haskell.Inspector.Smell
Language.Haskell.Inspector.Combiner
build-depends:
base >= 4 && < 5,
haskell-src >= 1 && < 1.1
test-suite spec
type:
exitcode-stdio-1.0
ghc-options:
-Wall
-fno-warn-missing-signatures
hs-source-dirs:
spec
main-is:
Spec.hs
build-depends:
base >= 4 && < 5,
haskell-src >= 1 && < 1.1,
hspec >= 2 && < 3,
hs-inspector