forked from DonJayamanne/pythonVSCode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmulti.code-workspace
More file actions
46 lines (46 loc) · 1.18 KB
/
multi.code-workspace
File metadata and controls
46 lines (46 loc) · 1.18 KB
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
{
"folders": [
{
"path": "workspace1"
},
{
"path": "workspace2"
},
{
"path": "workspace3"
},
{
"path": "workspace4"
},
{
"path": "workspace5"
},
{
"path": "parent\\child"
},
{
"path": "disableLinters"
},
{
"path": "../test"
}
],
"settings": {
"python.linting.flake8Enabled": false,
"python.linting.mypyEnabled": false,
"python.linting.pydocstyleEnabled": false,
"python.linting.pylamaEnabled": false,
"python.linting.pylintEnabled": true,
"python.linting.pep8Enabled": false,
"python.linting.prospectorEnabled": false,
"python.workspaceSymbols.enabled": false,
"python.formatting.provider": "yapf",
"python.sortImports.args": [
"-sp",
"/Users/donjayamanne/.vscode/extensions/pythonVSCode/src/test/pythonFiles/sorting/withconfig"
],
"python.linting.lintOnSave": false,
"python.linting.enabled": true,
"python.pythonPath": "python"
}
}