forked from DonJayamanne/pythonVSCode
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathmulti.code-workspace
More file actions
44 lines (44 loc) · 1.02 KB
/
multi.code-workspace
File metadata and controls
44 lines (44 loc) · 1.02 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
{
"folders": [
{
"path": "workspace1"
},
{
"path": "workspace2"
},
{
"path": "workspace3"
},
{
"path": "workspace4"
},
{
"path": "workspace5"
},
{
"path": "smokeTests"
},
{
"path": "parent\\child"
},
{
"path": "disableLinters"
},
{
"path": "../test"
}
],
"settings": {
"python.linting.flake8Enabled": false,
"python.linting.banditEnabled": false,
"python.linting.mypyEnabled": false,
"python.linting.pydocstyleEnabled": false,
"python.linting.pylamaEnabled": false,
"python.linting.pylintEnabled": true,
"python.linting.pycodestyleEnabled": false,
"python.linting.prospectorEnabled": false,
"python.linting.lintOnSave": false,
"python.linting.enabled": true,
"python.pythonPath": "python"
}
}