File tree 3 files changed +26
-3
lines changed
3 files changed +26
-3
lines changed Original file line number Diff line number Diff line change @@ -79,6 +79,9 @@ cradle:
79
79
- path : " ./test/functional"
80
80
component : " haskell-language-server:test:func-test"
81
81
82
+ - path : " ./plugins/hls-eval-plugin/test/Eval.hs"
83
+ component : " haskell-language-server:test:func-test"
84
+
82
85
- path : " ./plugins/tactics/src"
83
86
component : " haskell-language-server:test:func-test"
84
87
Original file line number Diff line number Diff line change @@ -34,6 +34,9 @@ cradle:
34
34
- path : " ./test/functional"
35
35
component : " haskell-language-server:test:func-test"
36
36
37
+ - path : " ./plugins/hls-eval-plugin/test/Eval.hs"
38
+ component : " haskell-language-server:test:func-test"
39
+
37
40
- path : " ./test/wrapper"
38
41
component : " haskell-language-server:test:wrapper-test"
39
42
Original file line number Diff line number Diff line change 1
1
cabal-version : 2.2
2
2
name : hls-eval-plugin
3
- version : 0.1.0.0
3
+ version : 0.1.0.1
4
4
synopsis : Eval plugin for Haskell Language Server
5
+ description : Please see the README on GitHub at <https://github.com/haskell/haskell-language-server#readme>
6
+ category : Development
7
+ bug-reports : https://github.com/haskell/haskell-language-server/issues
5
8
license : Apache-2.0
6
9
license-file : LICENSE
7
- author :
pepeiborra@gmail .com
,[email protected]
8
- maintainer :
pepeiborra@gmail .com
,[email protected]
10
+ author : https://github .com/haskell/haskell-language-server/contributors
11
+ maintainer : https://github .com/haskell/haskell-language-server/contributors
9
12
build-type : Simple
10
13
extra-source-files : LICENSE
11
14
15
+ flag pedantic
16
+ description : Enable -Werror
17
+ default : False
18
+ manual : True
19
+
20
+ source-repository head
21
+ type : git
22
+ location : https://github.com/haskell/haskell-language-server
23
+
12
24
library
13
25
exposed-modules : Ide.Plugin.Eval
14
26
hs-source-dirs : src
@@ -51,4 +63,9 @@ library
51
63
, transformers
52
64
, unordered-containers
53
65
66
+ ghc-options : -Wall -Wno-name-shadowing
67
+
68
+ if flag(pedantic)
69
+ ghc-options : -Werror
70
+
54
71
default-language : Haskell2010
You can’t perform that action at this time.
0 commit comments