-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy path.cclsp.json
More file actions
33 lines (33 loc) · 862 Bytes
/
.cclsp.json
File metadata and controls
33 lines (33 loc) · 862 Bytes
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
{
"servers": [
{
"extensions": ["py", "pyi"],
"command": ["pylsp"],
"rootDir": ".",
"initializationOptions": {
"settings": {
"pylsp": {
"plugins": {
"jedi_completion": { "enabled": true },
"jedi_definition": { "enabled": true },
"jedi_references": { "enabled": true },
"jedi_hover": { "enabled": true },
"pylint": { "enabled": false },
"pycodestyle": { "enabled": false }
}
}
}
}
},
{
"extensions": ["js", "ts", "jsx", "tsx", "mjs", "cjs"],
"command": ["typescript-language-server", "--stdio"],
"rootDir": "."
},
{
"extensions": ["md", "markdown"],
"command": ["typescript-language-server", "--stdio"],
"rootDir": "."
}
]
}