-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.yaml
109 lines (102 loc) · 1.85 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
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
name: restyler
version: 0.6.0.2
license: AGPL-3
language: GHC2021
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-safe-haskell-mode
- -Wno-prepositive-qualified-module
- -Wno-unsafe
dependencies:
- base
library:
source-dirs: src
dependencies:
- Blammo
- Glob
- aeson
- aeson-casing
- annotated-exception
- autodocodec
- autodocodec-yaml
- composition-extra
- conduit
- errors
- exceptions
- extra
- filepath
- http-conduit
- microlens
- microlens-mtl
- network-uri
- opt-env-conf >= 0.6.0.2
- path
- relude
- retry
- ronn
- ronn-opt-env-conf
- safe-coloured-text
- semigroups
- text
- typed-process
- unliftio
- unliftio-core
- unordered-containers
- validation
- vector
- yaml
executables:
restyle:
main: Main.hs
source-dirs: app
ghc-options:
- -Wall
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- aeson
- restyler
tests:
test:
main: Spec.hs
source-dirs: test
dependencies:
- Blammo
- aeson
- containers
- directory
- extra
- filepath
- hspec
- hspec-core
- hspec-expectations-lifted
- lens-aeson
- opt-env-conf
- path
- restyler
- safe-coloured-text
- text
- unliftio