-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.yaml
77 lines (71 loc) · 1.53 KB
/
package.yaml
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
name: hfmt
version: 0.3.0.0
synopsis: Haskell source code formatter
description: Inspired by gofmt. Built using hlint, hindent, and stylish-haskell.
license: MIT
license-file: LICENSE
author: Daniel Stiner
maintainer: Daniel Stiner <[email protected]>
stability: Experimental
github: danstiner/hfmt
category: Language
tested-with: GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.2, GHC == 8.5
extra-source-files:
- .stylish-haskell.yaml
- LICENSE
- README.md
- stack.yaml
ghc-options: -Wall
dependencies:
- base >= 4.8 && < 5
- bytestring
- Cabal
- conduit
- conduit-combinators
- Diff
- directory
- exceptions
- filepath
- haskell-src-exts > 1.20
- hindent == 5.*
- hlint == 3.*
- HUnit
- path
- path-io
- pretty
- stylish-haskell
- text
- transformers
- yaml
library:
source-dirs: src
exposed-modules:
- Language.Haskell.Format
- Language.Haskell.Format.Utilities
- Language.Haskell.Source.Enumerator
executable:
main: Main.hs
source-dirs: app
dependencies:
- ansi-wl-pprint
- hfmt
- optparse-applicative
tests:
pure:
main: Spec.hs
source-dirs:
- test/pure
dependencies:
- hfmt
- HUnit
- test-framework
- test-framework-hunit
self-formatting-test:
main: Spec.hs
source-dirs:
- test/self-formatting
dependencies:
- hfmt
- HUnit
- test-framework
- test-framework-hunit