forked from haskell/haskell-language-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhls-explicit-record-fields-plugin.cabal
70 lines (64 loc) · 1.71 KB
/
hls-explicit-record-fields-plugin.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
cabal-version: 3.0
name: hls-explicit-record-fields-plugin
version: 2.1.0.0
synopsis: Explicit record fields plugin for Haskell Language Server
description:
Please see the README on GitHub at <https://github.com/haskell/haskell-language-server#readme>
license: BSD-3-Clause
license-file: LICENSE
author: Berk Ozkutuk
maintainer: [email protected]
-- copyright:
category: Development
build-type: Simple
extra-doc-files: CHANGELOG.md
extra-source-files:
test/testdata/**/*.hs
source-repository head
type: git
location: https://github.com/haskell/haskell-language-server
flag pedantic
description: Enable -Werror
default: False
manual: True
common warnings
ghc-options: -Wall
library
import: warnings
exposed-modules: Ide.Plugin.ExplicitFields
-- other-modules:
-- other-extensions:
build-depends:
, base >=4.12 && <5
, ghc
, ghcide == 2.1.0.0
, hls-plugin-api == 2.1.0.0
, lsp
, lens
, hls-graph
, text
, syb
, transformers
, ghc-boot-th
, unordered-containers
, containers
, aeson
hs-source-dirs: src
default-language: Haskell2010
if flag(pedantic)
ghc-options: -Werror
test-suite tests
import: warnings
default-language: Haskell2010
-- other-modules:
-- other-extensions:
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
build-depends:
, base
, filepath
, text
, hls-explicit-record-fields-plugin
, lsp-test
, hls-test-utils