-
Notifications
You must be signed in to change notification settings - Fork 0
/
Honeypot.code-workspace
71 lines (71 loc) · 1.48 KB
/
Honeypot.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
{
"folders": [
{
"name": "Backend",
"path": "backend"
},
{
"name": "Frontend",
"path": "frontend"
},
{
"name": "Protocols",
"path": "protocols"
},
{
"name": "Database",
"path": "database"
},
{
"name": "Robot Tests",
"path": "tests"
},
{
"name": "Dev",
"path": "dev"
}
],
"settings": {
"python.linting.enabled": true,
"python.linting.lintOnSave": true,
"python.linting.pylintEnabled": true,
"python.linting.pylintPath": "pylint",
"python.linting.pylintArgs": [
"--rcfile=../.pylintrc"
],
"python.analysis.typeCheckingMode": "basic",
"python.analysis.autoImportCompletions": true,
"editor.formatOnSave": true,
"python.formatting.provider": "autopep8",
"python.formatting.autopep8Path": "autopep8",
"python.formatting.autopep8Args": [
"--max-line-length",
"100",
"--experimental"
],
"autoDocstring.customTemplatePath": "../.vscode/docstring-template",
},
"extensions": {
"recommendations": [
"ms-python.python",
"ms-python.vscode-pylance",
"njpwerner.autodocstring",
"ms-azuretools.vscode-docker"
]
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "Setup Poetry",
"type": "shell",
"command": "poetry install",
"problemMatcher": []
}
]
},
"launch": {
"configurations": [],
"compounds": []
}
}