Last active
February 18, 2023 15:40
-
-
Save tfausak/381ccd98ef008ecbe975777f6ea9429b to your computer and use it in GitHub Desktop.
Haskell Language Server (HLS) issue #3074. https://github.com/haskell/haskell-language-server/issues/3074
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
Show hidden characters
{ | |
"customizations": { | |
"vscode": { | |
"extensions": [ | |
"haskell.haskell" | |
] | |
} | |
}, | |
"dockerComposeFile": "compose.yaml", | |
"service": "devcontainer", | |
"workspaceFolder": "/workspaces/example" | |
} |
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
packages: | |
. | |
flow-2.0.0.2.tar.gz |
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
{ | |
"services": { | |
"devcontainer": { | |
"command": "sh -c 'while sleep 1; do :; done'", | |
"image": "public.ecr.aws/acilearning/haskell:9.4.4-be16c1942fc0c18391314839fdb1bd2e793c4287", | |
"volumes": [ | |
".:/workspaces/example" | |
], | |
"working_dir": "/workspace/example" | |
} | |
} | |
} |
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
cabal-version: >= 1.10 | |
name: example | |
version: 0 | |
build-type: Simple | |
library | |
build-depends: base | |
default-language: Haskell2010 | |
exposed-modules: Example |
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
module Example where |
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
{ | |
"cradle": { | |
"cabal": null | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment