packages feed

hls-module-name-plugin 1.0.0.2 → 1.0.0.3

raw patch · 3 files changed

+17/−3 lines, 3 files

Files

hls-module-name-plugin.cabal view
@@ -1,6 +1,6 @@ cabal-version:      2.4 name:               hls-module-name-plugin-version:            1.0.0.2+version:            1.0.0.3 synopsis:           Module name plugin for Haskell Language Server description:   Please see the README on GitHub at <https://github.com/haskell/haskell-language-server#readme>@@ -14,8 +14,8 @@ build-type:         Simple extra-source-files:   LICENSE-  test/testdata/*.hs-  test/testdata/*.yaml+  test/testdata/**/*.yaml+  test/testdata/**/*.hs  library   exposed-modules:  Ide.Plugin.ModuleName
+ test/testdata/subdir/TWrongModuleName.expected.hs view
@@ -0,0 +1,7 @@+module TWrongModuleName+  ( x+  )+where++x :: Integer+x = 11
+ test/testdata/subdir/TWrongModuleName.hs view
@@ -0,0 +1,7 @@+module BadName+  ( x+  )+where++x :: Integer+x = 11