-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoc-settings.json
49 lines (49 loc) · 1.53 KB
/
coc-settings.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
{
"languageserver": {
"haskell": {
"command": "haskell-language-server-wrapper",
"args": ["--lsp"],
"rootPatterns": [
"*.cabal",
"stack.yaml",
"cabal.project",
"package.yaml",
"hie.yaml"
],
"filetypes": ["haskell", "lhaskell"]
},
"graphql": {
"command": "graphql-lsp",
"args": ["server", "-m", "stream"],
// customize filetypes to your needs
//"filetypes": ["typescript", "typescriptreact", "graphql"],
"filetypes": ["graphql"],
"settings": {
"graphql-config.load.legacy": true
}
},
//},
//"golang": {
// "command": "gopls",
// "rootPatterns": ["go.work", "go.mod", ".vim/", ".git/", ".hg/"],
// "filetypes": ["go"],
// "initializationOptions": {
// "completeUnimported": true,
// "usePlaceholders": true
// }
//}
},
"yaml.schemas": {
"/values.schema.json": ["values.yaml"],
"https://raw.githubusercontent.com/lalcebo/json-schema/master/serverless/reference.json": ["serverless.yml", "serverless.yaml"],
"kubernetes": ["/*.yaml", "/*.yml"]
},
"solidity.remapping": {
"@openzeppelin/": "./node_modules/@openzeppelin/"
},
"solidity.includePath": "node_modules",
"coc.preferences.formatOnSaveFiletypes": [
"go",
"python",
]
}