-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadventofcode.code-workspace
50 lines (48 loc) · 1.63 KB
/
adventofcode.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
{
"folders": [
{
"name": "adventofcode",
"path": "."
},
],
"extensions": {
},
"settings": {
//files////////////////////////////////////////////////////////////////
"files.autoSave": "onFocusChange",
"files.eol": "\n",
"files.exclude": {
"**/__pycache__": true,
"**/_pytest": true,
"**/*.egg-info": true,
"**/*.dist-info": true,
"**/.pytest_cache": true,
"**/.ipynb_checkpoints/": true,
"**/.ipython": true,
},
"files.associations": {
"**/*.html": "html",
"*.py": "python"
},
//python///////////////////////////////////////////////////////////////
"python.analysis.extraPaths": ["2021", "2020", "2019", "2018", "2017", "2016", "2015"],
// black-settings
"python.formatting.provider": "black",
"python.formatting.blackArgs": ["--line-length", "119"],
//launcher-config//////////////////////////////////////////////////////
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File, integrated Terminal",
"type": "python",
"request": "launch",
"program": "${file}",
"cwd": "${fileDirname}",
"console": "integratedTerminal",
// "stopOnEntry": true, // vscode-debugging mode
},
]
},
}
}