-
Notifications
You must be signed in to change notification settings - Fork 0
/
exproot.code-workspace
78 lines (78 loc) · 1.96 KB
/
exproot.code-workspace
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"folders": [
{
"name": "root",
"path": "."
},
{
"path": "../logs/exper"
}
],
"settings": {
"python.defaultInterpreterPath": "/usr/bin/python",
"python.linting.pylintEnabled": false,
"python.linting.mypyEnabled": false,
"python.linting.flake8Enabled": true,
"python.linting.enabled": true,
"python.linting.mypyPath": "venv\\Scripts\\mypy.exe",
"python.linting.mypyArgs": [
"--config-file",
"setup.cfg"
],
"python.testing.pytestArgs": [
"cyberbattle"
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"python.linting.lintOnSave": true,
"python.formatting.provider": "autopep8",
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"extensions.ignoreRecommendations": true,
"files.autoSave": "afterDelay",
"debug.allowBreakpointsEverywhere": true,
"python.languageServer": "Pylance",
"python.analysis.typeCheckingMode": "off",
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/*/**": true,
"typings/**": true,
"venv/**": true,
"~/.vscode-server/**": true,
"**/.npm/**": true,
"**/.github/**": true,
"**/.pytest_cache/**": true,
"**/.cache/**": true,
".dotnet/**": true,
".ssh/**": true,
".git/**": true,
".vscode/**": true,
"loonshot_sim.egg-info": true
},
"files.exclude": {
".cache/**": true,
".github/**": true,
".ipython/**": true,
".jupyter/**": true,
".local": true,
".npm/**": true,
".nv": true,
".pki/**": true,
".pytest_cache/**": true,
".vscode-server/**": true,
"**/.git": false,
"typings/**": true,
".gnupg/**": true,
".dotnet/**": true,
".ssh/**": true,
".git/**": true,
".vscode/**": true
},
"files.trimFinalNewlines": true,
"github-enterprise.uri": "github.wdf.sap.corp",
"editor.fontFamily": "Menlo, Monaco, 'Courier New', monospace",
"git.postCommitCommand": "push",
"git.rememberPostCommitCommand": true
}
}