-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathrestyler.cabal
More file actions
212 lines (207 loc) · 5.49 KB
/
Copy pathrestyler.cabal
File metadata and controls
212 lines (207 loc) · 5.49 KB
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.39.1.
--
-- see: https://github.com/sol/hpack
name: restyler
version: 0.0.0.0
license: AGPL-3
build-type: Simple
library
exposed-modules:
Restyler.AnnotatedException
Restyler.App
Restyler.CLI
Restyler.CodeVolume
Restyler.Config
Restyler.Config.AutoEnable
Restyler.Config.CommitTemplate
Restyler.Config.CopyFiles
Restyler.Config.DryRun
Restyler.Config.Enabled
Restyler.Config.Exclude
Restyler.Config.FailOnDifferences
Restyler.Config.Glob
Restyler.Config.Ignore
Restyler.Config.Image
Restyler.Config.ImageCleanup
Restyler.Config.Include
Restyler.Config.Interpreter
Restyler.Config.LogSettings
Restyler.Config.Manifest
Restyler.Config.NoClean
Restyler.Config.NoCommit
Restyler.Config.NoPull
Restyler.Config.RemoteFile
Restyler.Config.Repository
Restyler.Config.Restrictions
Restyler.Config.Restrictions.Bytes
Restyler.Config.Restyler
Restyler.Delimited
Restyler.Docs
Restyler.GitHub.PullRequest
Restyler.Ignore
Restyler.LogFormat
Restyler.Monad.Directory
Restyler.Monad.Docker
Restyler.Monad.DownloadFile
Restyler.Monad.Git
Restyler.Monad.ReadFile
Restyler.Monad.WriteFile
Restyler.OrphanInstances
Restyler.Path
Restyler.Prelude
Restyler.ReadP
Restyler.Restyle
Restyler.Restyler
Restyler.Restyler.Run
Restyler.RestyleResult
Restyler.RestylerResult
other-modules:
Paths_restyler
hs-source-dirs:
src
default-extensions:
DataKinds
DeriveAnyClass
DerivingStrategies
DerivingVia
DuplicateRecordFields
GADTs
LambdaCase
NoFieldSelectors
NoImplicitPrelude
NoMonomorphismRestriction
NoPostfixOperators
OverloadedRecordDot
OverloadedStrings
QuasiQuotes
TypeFamilies
ghc-options: -fignore-optim-changes -fwrite-ide-info -Weverything -Wno-all-missed-specialisations -Wno-missed-specialisations -Wno-missing-import-lists -Wno-missing-kind-signatures -Wno-missing-poly-kind-signatures -Wno-missing-role-annotations -Wno-missing-safe-haskell-mode -Wno-prepositive-qualified-module -Wno-unsafe
build-depends:
Blammo
, Glob
, aeson
, aeson-casing
, aeson-pretty
, annotated-exception
, autodocodec
, autodocodec-yaml
, base
, composition-extra
, conduit
, errors
, exceptions
, extra
, filepath
, http-conduit
, microlens
, microlens-mtl
, monad-logger-aeson
, network-uri
, opt-env-conf >=0.6.0.2
, path
, path-io
, random >=1.3.0
, relude
, retry
, ronn
, ronn-opt-env-conf
, safe-coloured-text
, semigroups
, text
, typed-process
, unliftio
, unliftio-core
, unordered-containers
, validation
, vector
, yaml
default-language: GHC2021
executable restyle
main-is: Main.hs
other-modules:
Paths_restyler
hs-source-dirs:
app
default-extensions:
DataKinds
DeriveAnyClass
DerivingStrategies
DerivingVia
DuplicateRecordFields
GADTs
LambdaCase
NoFieldSelectors
NoImplicitPrelude
NoMonomorphismRestriction
NoPostfixOperators
OverloadedRecordDot
OverloadedStrings
QuasiQuotes
TypeFamilies
ghc-options: -fignore-optim-changes -fwrite-ide-info -Weverything -Wno-all-missed-specialisations -Wno-missed-specialisations -Wno-missing-import-lists -Wno-missing-kind-signatures -Wno-missing-poly-kind-signatures -Wno-missing-role-annotations -Wno-missing-safe-haskell-mode -Wno-prepositive-qualified-module -Wno-unsafe -Wall -threaded -rtsopts -with-rtsopts=-N
build-depends:
aeson
, base
, restyler
default-language: GHC2021
test-suite test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Restyler.Config.CommitTemplateSpec
Restyler.Config.GlobSpec
Restyler.Config.IncludeSpec
Restyler.Config.InterpreterSpec
Restyler.Config.RestylerSpec
Restyler.ConfigSpec
Restyler.DelimitedSpec
Restyler.IgnoreSpec
Restyler.PathSpec
Restyler.RestrictionsSpec
Restyler.Restyler.RunSpec
Restyler.RestylerSpec
Restyler.Test.App
Restyler.Test.Fixtures
Restyler.Test.FS
Restyler.Test.OptEnvConf
Paths_restyler
hs-source-dirs:
test
default-extensions:
DataKinds
DeriveAnyClass
DerivingStrategies
DerivingVia
DuplicateRecordFields
GADTs
LambdaCase
NoFieldSelectors
NoImplicitPrelude
NoMonomorphismRestriction
NoPostfixOperators
OverloadedRecordDot
OverloadedStrings
QuasiQuotes
TypeFamilies
ghc-options: -fignore-optim-changes -fwrite-ide-info -Weverything -Wno-all-missed-specialisations -Wno-missed-specialisations -Wno-missing-import-lists -Wno-missing-kind-signatures -Wno-missing-poly-kind-signatures -Wno-missing-role-annotations -Wno-missing-safe-haskell-mode -Wno-prepositive-qualified-module -Wno-unsafe
build-depends:
Blammo
, aeson
, autodocodec
, autodocodec-yaml
, base
, containers
, hspec
, hspec-core
, hspec-expectations-lifted
, lens-aeson
, opt-env-conf
, path
, path-io
, restyler
, safe-coloured-text
, text
, unliftio
, yaml
default-language: GHC2021