-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdscope.code-workspace
More file actions
105 lines (105 loc) · 3.05 KB
/
dscope.code-workspace
File metadata and controls
105 lines (105 loc) · 3.05 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
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"folders": [
{ "path": "." }
]
,
"settings": {
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"**/node_modules": true,
"**/dist": true,
"**/build": true,
"**/__pycache__": true,
"**/.pytest_cache": true
},
"search.exclude": {
"**/node_modules": true,
"**/dist": true,
"**/build": true,
"**/.git": true
},
"editor.tabSize": 4,
"editor.insertSpaces": true,
"editor.formatOnSave": true,
// Formatter global : on laisse VS Code choisir automatiquement
"editor.defaultFormatter": null,
// Markdown
"[markdown]": {
"editor.defaultFormatter": "vscode.markdown-language-features",
"editor.wordWrap": "on",
"editor.quickSuggestions": {
"comments": "off",
"strings": "off",
"other": "off"
}
},
// JSON
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
// Python
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
},
"python.analysis.typeCheckingMode": "basic",
"python.formatting.provider": "black",
"python.linting.enabled": true,
"python.linting.pylintEnabled": true,
"yaml.schemas": {
"https://json.schemastore.org/github-workflow.json": "/*.github/workflows/*"
},
"git.confirmSync": false,
"git.autofetch": true
},
"extensions": {
"recommendations": [
"ms-python.python",
"ms-python.black-formatter",
"ms-toolsai.jupyter",
"esbenp.prettier-vscode",
"yzhang.markdown-all-in-one",
"redhat.vscode-yaml",
"github.vscode-github-actions",
"ms-vscode.powershell",
"ms-vscode.cpptools"
]
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "Analyzer: Run",
"type": "shell",
"command": "python analyzer/src/main.py",
"group": "build",
"problemMatcher": []
},
{
"label": "Analyzer: Tests",
"type": "shell",
"command": "pytest analyzer/tests",
"group": "test",
"problemMatcher": []
},
{
"label": "Format all",
"type": "shell",
"command": "prettier --write .",
"problemMatcher": []
}
]
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Run Analyzer",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder:analyzer}/src/main.py",
"console": "integratedTerminal"
}
]
}
}