-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathvulscanner.code-workspace
More file actions
36 lines (36 loc) · 966 Bytes
/
vulscanner.code-workspace
File metadata and controls
36 lines (36 loc) · 966 Bytes
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
{
"folders": [
{
"path": "."
}
],
"settings": {
"python.defaultInterpreterPath": "python",
"terminal.integrated.defaultProfile.windows": "PowerShell"
},
"extensions": {
"recommendations": [
"ms-python.python",
"ms-python.flake8",
"ms-python.black-formatter",
"ms-vscode.vscode-json",
"bradlc.vscode-tailwindcss",
"formulahendry.auto-rename-tag",
"christian-kohler.path-intellisense",
"ms-vscode.powershell"
]
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "🚀 Quick Start VulScanner",
"type": "python",
"request": "launch",
"program": "main.py",
"console": "integratedTerminal",
"cwd": "${workspaceFolder}"
}
]
}
}