forked from tweag/ormolu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ormolu.cabal
165 lines (159 loc) · 7.52 KB
/
ormolu.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
name: ormolu
version: 0.0.1.0
cabal-version: 1.18
tested-with: GHC==8.6.5
license: BSD3
license-file: LICENSE.md
maintainer: Mark Karpov <[email protected]>
homepage: https://github.com/tweag/ormolu
bug-reports: https://github.com/tweag/ormolu/issues
category: Development, Formatting
synopsis: A formatter for Haskell source code
build-type: Simple
description: A formatter for Haskell source code.
extra-doc-files: CONTRIBUTING.md
, CHANGELOG.md
, DESIGN.md
, README.md
data-files: data/examples/declaration/annotation/*.hs
, data/examples/declaration/class/*.hs
, data/examples/declaration/data/*.hs
, data/examples/declaration/data/gadt/*.hs
, data/examples/declaration/default/*.hs
, data/examples/declaration/deriving/*.hs
, data/examples/declaration/foreign/*.hs
, data/examples/declaration/instance/*.hs
, data/examples/declaration/rewrite-rule/*.hs
, data/examples/declaration/role-annotation/*.hs
, data/examples/declaration/signature/complete/*.hs
, data/examples/declaration/signature/fixity/*.hs
, data/examples/declaration/signature/inline/*.hs
, data/examples/declaration/signature/minimal/*.hs
, data/examples/declaration/signature/pattern/*.hs
, data/examples/declaration/signature/set-cost-centre/*.hs
, data/examples/declaration/signature/specialize/*.hs
, data/examples/declaration/signature/type/*.hs
, data/examples/declaration/splice/*.hs
, data/examples/declaration/type-families/closed-type-family/*.hs
, data/examples/declaration/type-families/data-family/*.hs
, data/examples/declaration/type-families/type-family/*.hs
, data/examples/declaration/type-synonyms/*.hs
, data/examples/declaration/type/*.hs
, data/examples/declaration/value/function/*.hs
, data/examples/declaration/value/function/arrow/*.hs
, data/examples/declaration/value/function/comprehension/*.hs
, data/examples/declaration/value/function/do/*.hs
, data/examples/declaration/value/function/infix/*.hs
, data/examples/declaration/value/function/pattern/*.hs
, data/examples/declaration/value/other/*.hs
, data/examples/declaration/value/pattern-synonyms/*.hs
, data/examples/declaration/warning/*.hs
, data/examples/import/*.hs
, data/examples/module-header/*.hs
, data/examples/other/*.hs
source-repository head
type: git
location: https://github.com/tweag/ormolu.git
flag dev
description: Turn on development settings.
manual: True
default: False
library
hs-source-dirs: src
build-depends: base >= 4.12 && < 5.0
, bytestring >= 0.2 && < 0.11
, containers >= 0.5 && < 0.7
, dlist >= 0.8 && < 0.9
, exceptions >= 0.6 && < 0.11
, ghc == 8.6.5
, ghc-boot-th == 8.6.5
, ghc-paths >= 0.1 && < 0.2
, mtl >= 2.0 && < 3.0
, syb >= 0.7 && < 0.8
, text >= 0.2 && < 1.3
exposed-modules: Ormolu
, Ormolu.Config
, Ormolu.Diff
, Ormolu.Exception
, Ormolu.Imports
, Ormolu.Parser
, Ormolu.Parser.Anns
, Ormolu.Parser.CommentStream
, Ormolu.Parser.Pragma
, Ormolu.Parser.Result
, Ormolu.Printer
, Ormolu.Printer.Combinators
, Ormolu.Printer.Comments
, Ormolu.Printer.Internal
, Ormolu.Printer.Meat.Common
, Ormolu.Printer.Meat.Declaration
, Ormolu.Printer.Meat.Declaration.Annotation
, Ormolu.Printer.Meat.Declaration.Class
, Ormolu.Printer.Meat.Declaration.Data
, Ormolu.Printer.Meat.Declaration.Default
, Ormolu.Printer.Meat.Declaration.Foreign
, Ormolu.Printer.Meat.Declaration.Instance
, Ormolu.Printer.Meat.Declaration.RoleAnnotation
, Ormolu.Printer.Meat.Declaration.Rule
, Ormolu.Printer.Meat.Declaration.Signature
, Ormolu.Printer.Meat.Declaration.Splice
, Ormolu.Printer.Meat.Declaration.Type
, Ormolu.Printer.Meat.Declaration.TypeFamily
, Ormolu.Printer.Meat.Declaration.Value
, Ormolu.Printer.Meat.Declaration.Warning
, Ormolu.Printer.Meat.ImportExport
, Ormolu.Printer.Meat.Module
, Ormolu.Printer.Meat.Pragma
, Ormolu.Printer.Meat.Type
, Ormolu.Printer.Operators
, Ormolu.Printer.SpanStream
, Ormolu.Utils
if flag(dev)
ghc-options: -Wall -Werror -Wcompat
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wnoncanonical-monad-instances
-Wnoncanonical-monadfail-instances
else
ghc-options: -O2 -Wall
default-language: Haskell2010
test-suite tests
main-is: Spec.hs
hs-source-dirs: tests
type: exitcode-stdio-1.0
build-depends: base >= 4.12 && < 5.0
, containers >= 0.5 && < 0.7
, filepath >= 1.2 && < 1.5
, hspec >= 2.0 && < 3.0
, ormolu
, path >= 0.6 && < 0.7
, path-io >= 1.4.2 && < 2.0
, text >= 0.2 && < 1.3
build-tools: hspec-discover >= 2.0 && < 3.0
other-modules:
Ormolu.Parser.PragmaSpec
, Ormolu.PrinterSpec
if flag(dev)
ghc-options: -Wall -Werror
else
ghc-options: -O2 -Wall
default-language: Haskell2010
executable ormolu
main-is: Main.hs
hs-source-dirs: app
build-depends: base >= 4.12 && < 5.0
, ghc == 8.6.5
, gitrev >= 1.3 && < 1.4
, optparse-applicative >= 0.14 && < 0.15
, ormolu
, text >= 0.2 && < 1.3
other-modules: Paths_ormolu
if flag(dev)
ghc-options: -Wall -Werror -Wcompat
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wnoncanonical-monad-instances
-Wnoncanonical-monadfail-instances
else
ghc-options: -O2 -Wall
default-language: Haskell2010