-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoc-settings.json
86 lines (86 loc) · 1.76 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"http.proxyStrictSSL": false,
"colors.enable": true,
"python.jediEnabled": false,
"diagnostic.enable": true,
"diagnostic.enableHighlightLineNumber": true,
"diagnostic.level": "warning",
"diagnostic.displayByAle": false,
"coc.preferences.formatOnSave": true,
"coc.preferences.formatOnType": true,
"suggest.noselect": false,
"suggest.removeDuplicateItems": true,
"eslint.autoFixOnSave": true,
"eslint.filetypes": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
],
"prettier.disableSuccessMessage": true,
"pyright.enable": true,
"python.formatting.provider": "black",
"python.linting.ruffEnabled": true,
"python.analysis.diagnosticSeverityOverrides": {
"reportOptionalMemberAccess": "information"
},
"languageserver": {
"python": {
"command": "pyright",
"filetypes": [
"python"
],
"rootPatterns": [
".git",
".env",
"venv",
".venv",
"setup.cfg",
"setup.py",
"pyproject.toml",
"pyrightconfig.json"
]
},
"golang": {
"command": "gopls",
"rootPatterns": [
"go.work",
"go.mod",
".vim/",
".git/",
".hg/"
],
"filetypes": [
"go"
],
"initializationOptions": {
"usePlaceholders": true
}
},
"java": {
"command": "jdtls",
"filetypes": [
"java",
"class"
],
"rootPatterns": [
"maven",
".git",
".vim"
]
},
"bash": {
"command": "bash-language-server",
"args": [
"start"
],
"filetypes": [
"sh"
],
"ignoredRootPaths": [
"~"
]
}
},
"svelte.enable-ts-plugin": false
}