@@ -2,7 +2,9 @@ cabal-version: 2.2
22name : hls-hlint-plugin
33version : 1.0.0.1
44synopsis : Hlint integration plugin with Haskell Language Server
5- description : Please see Haskell Language Server Readme (https://github.com/haskell/haskell-language-server#readme)
5+ description :
6+ Please see Haskell Language Server Readme (https://github.com/haskell/haskell-language-server#readme)
7+
68license : Apache-2.0
79license-file : LICENSE
810author : The Haskell IDE Team
@@ -23,51 +25,55 @@ flag ghc-lib
2325 Force dependency on ghc-lib-parser even if GHC API in the ghc package is supported
2426
2527library
26- exposed-modules : Ide.Plugin.Hlint
27- hs-source-dirs : src
28+ exposed-modules : Ide.Plugin.Hlint
29+ hs-source-dirs : src
2830 build-depends :
2931 , aeson
30- , apply-refact >= 0.9
31- , base >= 4.12 && < 5
32+ , apply-refact >= 0.9
33+ , base >= 4.12 && < 5
3234 , binary
3335 , bytestring
3436 , containers
3537 , data-default
3638 , deepseq
37- , Diff
39+ , Diff ^ >= 0.4.0
3840 , directory
3941 , extra
4042 , filepath
41- , ghc-exactprint >= 0.6.3.4
42- , ghcide ^>= 1.1.0.0
43+ , ghc-exactprint >= 0.6.3.4
44+ , ghcide ^>= 1.1.0.0
4345 , hashable
44- , lsp
45- , hlint >= 3.2
46- , hls-plugin-api >= 1.0 && < 1.2
46+ , hlint >= 3.2
47+ , hls-plugin-api >= 1.0 && < 1.2
4748 , hslogger
4849 , lens
50+ , lsp
4951 , regex-tdfa
5052 , shake
5153 , temporary
5254 , text
5355 , transformers
5456 , unordered-containers
5557
56- if (!flag(ghc-lib) && impl(ghc >= 8.10.1 ) && impl(ghc < 9.0.0 ))
57- build-depends : ghc ^>= 8.10
58+ if (( !flag(ghc-lib) && impl(ghc >= 8.10.1 ) ) && impl(ghc < 9.0.0 ))
59+ build-depends : ghc ^>= 8.10
5860
5961 else
6062 build-depends :
6163 , ghc
62- , ghc-lib ^>= 8.10.4.20210206
63- , ghc-lib-parser-ex ^>= 8.10
64+ , ghc-lib ^>= 8.10.4.20210206
65+ , ghc-lib-parser-ex ^>= 8.10
6466
6567 cpp-options : -DHLINT_ON_GHC_LIB
6668
67- ghc-options : -Wall -Wredundant-constraints -Wno-name-shadowing -Wno-unticked-promoted-constructors
69+ ghc-options :
70+ -Wall -Wredundant-constraints -Wno-name-shadowing
71+ -Wno-unticked-promoted-constructors
6872
6973 if flag(pedantic)
7074 ghc-options : -Werror
7175
72- default-language : Haskell2010
73- default-extensions : DataKinds, TypeOperators
76+ default-language : Haskell2010
77+ default-extensions :
78+ DataKinds
79+ TypeOperators
0 commit comments