forked from hmemcpy/haskell-hie-devcontainer
-
Notifications
You must be signed in to change notification settings - Fork 17
/
devcontainer.json
51 lines (51 loc) · 1.42 KB
/
devcontainer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "DevContainer for Haskell (GHC, Stack, Cabal, HIE, LSP, DAP, etc.)",
"remoteUser": "vscode",
"runArgs": [],
"build": {
"args": {
"USERNAME": "vscode",
"GHC_VERSION": "9.6.3",
"STACK_VERSION": "recommended",
"STACK_RESOLVER": "nightly",
"CABAL_VERSION": "recommended",
"HLS_VERSION": "recommended",
"LLVM_VERSION": "17"
},
"context": "..",
"dockerfile": "Dockerfile"
},
"customizations": {
"vscode": {
"extensions": [
"haskell.haskell",
"phoityne.phoityne-vscode",
"eriksik2.vscode-ghci",
"jcanero.hoogle-vscode"
],
"settings": {
"files.exclude": {
"**/*.olean": true,
"**/.DS_Store": true,
"**/.git": true,
"**/.hg": true,
"**/.svn": true,
"**/CVS": true
},
"haskell.checkProject": true,
"haskell.formattingProvider": "ormolu",
"haskell.indentationRules.enabled": true,
"haskell.liquidOn": false,
"haskell.checkParents": "CheckOnSave",
"haskell.manageHLS": "GHCup",
"haskell.maxCompletions": 40,
"haskell.openDocumentationInHackage": false,
"haskell.openSourceInHackage": false,
"haskell.trace.client": "error",
"haskell.trace.server": "off",
"haskell.upgradeGHCup": true,
"hoogle-vscode.useCabalDependencies": true
}
}
}
}