-
-
Notifications
You must be signed in to change notification settings - Fork 367
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> Co-authored-by: Pepe Iborra <[email protected]> (cherry picked from commit 9308ff4) # Conflicts: # plugins/hls-refine-imports-plugin/hls-refine-imports-plugin.cabal Co-authored-by: Potato Hatsue <[email protected]>
- Loading branch information
1 parent
f1c0969
commit 90fdc13
Showing
13 changed files
with
77 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
47 changes: 47 additions & 0 deletions
47
plugins/hls-refine-imports-plugin/hls-refine-imports-plugin.cabal
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
cabal-version: 2.2 | ||
name: hls-refine-imports-plugin | ||
version: 1.0.0.0 | ||
synopsis: Refine imports plugin for Haskell Language Server | ||
license: Apache-2.0 | ||
license-file: LICENSE | ||
author: rayshih | ||
maintainer: [email protected] | ||
category: Development | ||
build-type: Simple | ||
extra-source-files: | ||
LICENSE | ||
|
||
library | ||
exposed-modules: Ide.Plugin.RefineImports | ||
hs-source-dirs: src | ||
build-depends: | ||
, aeson | ||
, base >=4.12 && <5 | ||
, containers | ||
, deepseq | ||
, ghc | ||
, ghcide ^>=1.2 | ||
, hls-plugin-api ^>=1.1 | ||
, lsp | ||
, lsp-types | ||
, hls-graph | ||
, text | ||
, unordered-containers | ||
, hls-explicit-imports-plugin ^>= 1.0.0.1 | ||
|
||
default-language: Haskell2010 | ||
default-extensions: DataKinds, TypeOperators | ||
|
||
test-suite tests | ||
type: exitcode-stdio-1.0 | ||
default-language: Haskell2010 | ||
hs-source-dirs: test | ||
main-is: Main.hs | ||
ghc-options: -threaded -rtsopts -with-rtsopts=-N | ||
build-depends: | ||
, base | ||
, bytestring | ||
, filepath | ||
, hls-refine-imports-plugin | ||
, hls-test-utils | ||
, text |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters