packages feed

hls-explicit-imports-plugin 1.0.1.1 → 1.0.1.2

raw patch · 5 files changed

+30/−2 lines, 5 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

hls-explicit-imports-plugin.cabal view
@@ -1,6 +1,6 @@ cabal-version:      2.2 name:               hls-explicit-imports-plugin-version:            1.0.1.1+version:            1.0.1.2 synopsis:           Explicit imports plugin for Haskell Language Server description:   Please see the README on GitHub at <https://github.com/haskell/haskell-language-server#readme>@@ -10,7 +10,10 @@ maintainer:         pepeiborra@gmail.com category:           Development build-type:         Simple-extra-source-files: LICENSE+extra-source-files:+  LICENSE+  test/testdata/*.hs+  test/testdata/*.yaml  library   exposed-modules:    Ide.Plugin.ExplicitImports
+ test/testdata/A.hs view
@@ -0,0 +1,7 @@+module A where++a1 :: String+a1 = "a1"++a2 :: String+a2 = "a2"
+ test/testdata/Exported.hs view
@@ -0,0 +1,6 @@+module Exported (module A) where++import A++main :: IO ()+main = putStrLn $ "hello " ++ a1
+ test/testdata/UsualCase.hs view
@@ -0,0 +1,6 @@+module Main where++import A++main :: IO ()+main = putStrLn $ "hello " ++ a1
+ test/testdata/hie.yaml view
@@ -0,0 +1,6 @@+cradle:+  direct:+    arguments:+    - UsualCase.hs+    - Exported.hs+    - A.hs