-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcoc-settings.json
36 lines (36 loc) · 1017 Bytes
/
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
{
"suggest.noselect": true,
"javascript.suggestionActions.enabled": false,
"javascript.suggest.autoImports": true,
"typescript.preferences.importModuleSpecifier": "relative",
"suggest.autoTrigger": "always",
"suggest.maxCompleteItemCount": 20,
"eslint.autoFixOnSave": true,
"diagnostic.errorSign": "•",
"diagnostic.warningSign": "•",
"diagnostic.infoSign": "•",
"codeLens.enable": true,
"solargraph.diagnostics": true,
"solargraph.autoformat": true,
"solargraph.formatting": true,
"solargraph.hover": true,
"languageserver": {
"haskell": {
"command": "haskell-language-server-wrapper",
"args": ["--lsp"],
"rootPatterns": [
".stack.yaml",
".hie-bios",
"BUILD.bazel",
"cabal.config",
"package.yaml"
],
"filetypes": ["hs", "lhs", "haskell"]
}
},
"coc.preferences.formatOnSave": true,
"go.goplsOptions": {
"go.buildFlags": ["-tags=unit,integration"],
"go.testTags": "unit,integration"
}
}