-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoc-settings.json
40 lines (40 loc) · 1.15 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
{
"suggest.noselect": true,
"Lua.diagnostics.globals": [
"vim"
],
"diagnostic.virtualText": true,
"diagnostic.warningSign": "",
"diagnostic.errorSign": "",
"diagnostic.infoSign": "",
"diagnostic.hintSign": "",
"diagnostic.level": "error",
"diagnostic.showUnused": true,
"python.analysis.typeCheckingMode": "basic",
"python.linting.enabled": true,
"python.linting.pylintEnabled": true,
"python.analysis.diagnosticSeverityOverrides": {
"reportGeneralTypeIssues": "none",
"reportOptionalMemberAccess": "none",
"reportUnboundVariable": "none",
"reportOptionalSubscript": "none",
"reportOptionalIterable": "none",
"reportOptionalOperand": "none"
},
"cSpell.language": "en",
"cSpell.enabled": true,
"cSpell.showStatus": true,
"cSpell.ignorePaths": [
"node_modules",
"**/node_modules",
"**/node_modules/**",
"node_modules/**",
"vscode-extension",
".venv/**",
"**/.virtualenvs/**",
".git",
"*.dll",
"**/*.dll"
],
"snippets.ultisnips.pythonPrompt": false
}