-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoc-settings.json
30 lines (30 loc) · 1.06 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
{
"coc.preferences.formatOnSaveFiletypes": ["rust", "python"],
"python.jediEnabled": false,
"python.linting.pylintEnabled": true,
"python.linting.enabled": true,
"python.linting.pylintArgs": [
"--注释:下面的参数用来忽略'Undefined variable'错误提示,详见https://stackoverflow.com/questions/15088938/how-to-disable-pylint-undefined-variable-error-for-a-specific-variable-in-a-fi",
"--dummy-variables-rgx='(_+[a-zA-Z0-9]*?$)|dummy|qdict'",
"--dummy-variables='_,dummy,host_object'"
],
"python.formatting.autopep8Args": [
"--ignore", "E402,E501"
],
"javascript.format.enabled": true,
"tsserver.log": "verbose",
"languageserver": {
"golang": {
"command": "gopls",
"rootPatterns": ["go.mod", ".vim/", ".git/", ".hg/"],
"filetypes": ["go"]
},
"bash": {
"command": "bash-language-server",
"args": ["start"],
"filetypes": ["sh"],
"ignoredRootPaths": ["~"]
}
},
"clangd.path": "/Users/tangwei/.config/coc/extensions/coc-clangd-data/install/10.0.0/clangd_10.0.0/bin/clangd"
}