-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoc-settings.json
39 lines (34 loc) · 902 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
37
38
39
{
"coc.preferences.formatOnSaveFiletypes": [
"typescript",
"javascript",
"css",
"json",
"elixir"
],
"signature.target": "echo",
"diagnostic.messageTarget": "echo",
"python.jediEnabled": false,
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
"python.formatting.provider": "autopep8",
"solargraph.diagnostics": true,
"solargraph.autoformat": true,
"solargraph.formatting": true,
"solargraph.hover": true,
"solargraph.symbols": true,
"solargraph.rename": true,
"solargraph.definitions": true,
"solargraph.references": true,
"solargraph.completion": true,
"git.enableGutters": true,
"list.source.files.command": "rg",
"list.source.files.args": ["--files"],
"list.source.files.excludePatterns": [
"**/_build/**",
"**/deps/**",
"**/priv/static/**",
"**/cover/**",
"**/node_modules/**"
],
}