-
Notifications
You must be signed in to change notification settings - Fork 2
/
coc-settings.json
126 lines (126 loc) · 3.02 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"suggest.autoTrigger": "always",
"suggest.keepCompleteopt": false,
"suggest.triggerAfterInsertEnter": true,
"suggest.timeout": 500,
"suggest.noselect": false,
"suggest.minTriggerInputLength": 1,
"suggest.acceptSuggestionOnCommitCharacter": true,
"suggest.floatEnable": true,
"suggest.enablePreview": false,
"diagnostic.messageTarget": "float",
"diagnostic.refreshOnInsertMode": true,
"diagnostic.signOffset": 9999999,
"diagnostic.virtualText": false,
"diagnostic.virtualTextLines": 3,
"signature.target": "float",
"coc.preferences.hoverTarget": "float",
"codeLens.enable": true,
"coc.preferences.formatOnSaveFiletypes":[
"python",
"go",
"json",
"yaml",
"markdown",
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
],
"python.jediEnabled": false,
"python.pipenvPath": "/usr/local/bin/pipenv",
"python.pythonPath": "/usr/local/bin/python3",
"python.venvPath": "~/.virtualenvs",
"python.linting.enabled": false,
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
"python.linting.flake8Args": [
"--max-line-length 160"
],
"python.formatting.provider": "black",
"python.formatting.blackArgs": [
"--line-length 160"
],
"json.enable": true,
"json.format.enable": true,
"languageserver": {
"golang": {
"command": "gopls",
"enable": true,
"rootPatterns": [
"go.mod",
".vim/",
".git/",
".hg/"
],
"filetypes": [
"go"
]
},
"python": {
"command": "/usr/local/bin/python3",
"args": [
"-mpyls",
"-vv",
"--log-file",
"/tmp/lsp_python.log"
],
"trace.server": "verbose",
"filetypes": [
"python",
"python.jinja2"
],
"settings": {
"pyls": {
"enable": true,
"commandPath": "",
"configurationSources": [
"pydocstyle"
],
"plugins": {
"jedi_completion": {
"enabled": true
},
"jedi_hover": {
"enabled": true
},
"jedi_references": {
"enabled": true
},
"jedi_signature_help": {
"enabled": true
},
"jedi_symbols": {
"enabled": true,
"all_scopes": true
},
"mccabe": {
"enabled": true,
"threshold": 15
},
"preload": {
"enabled": true
},
"pycodestyle": {
"enabled": true
},
"pydocstyle": {
"enabled": false,
"match": "(?!test_).*\\.py",
"matchDir": "[^\\.].*"
},
"pyflakes": {
"enabled": false
},
"rope_completion": {
"enabled": false
},
"yapf": {
"enabled": false
}
}
}
}
}
}
}