-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathvulnerability-analysis.code-workspace
More file actions
125 lines (125 loc) · 3.99 KB
/
vulnerability-analysis.code-workspace
File metadata and controls
125 lines (125 loc) · 3.99 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"extensions": {
"recommendations": [
"eeyore.yapf",
"ms-python.flake8",
"ms-python.isort",
"ms-python.pylint",
"ms-python.vscode-pylance",
"stkb.rewrap"
]
},
"folders": [
{
"name": "workspace",
"path": "."
}
],
"launch": {
"configurations": [
{
"args": [
"run",
"--config_file=configs/config.yml",
"--input_file=data/input_messages/morpheus:23.11-runtime.json"
],
"envFile": "${workspaceFolder:workspace}/.env",
"console": "integratedTerminal",
"cwd": "${workspaceFolder:workspace}",
"justMyCode": false,
"name": "nat run",
"program": "${workspaceFolder:workspace}/.venv/bin/nat",
"request": "launch",
"type": "debugpy"
},
{
"args": [
"serve",
"--dask_workers=threads",
"--config_file=configs/config.yml",
"--host",
"0.0.0.0",
"--port",
"26466"
],
"envFile": "${workspaceFolder:workspace}/.env",
"console": "integratedTerminal",
"cwd": "${workspaceFolder:workspace}",
"justMyCode": false,
"name": "nat serve",
"program": "${workspaceFolder:workspace}/.venv/bin/nat",
"request": "launch",
"type": "debugpy"
},
{
"args": [
"eval",
"--config_file=configs/config.yml"
],
"envFile": "${workspaceFolder:workspace}/.env",
"console": "integratedTerminal",
"cwd": "${workspaceFolder:workspace}",
"justMyCode": false,
"name": "nat eval",
"program": "${workspaceFolder:workspace}/.venv/bin/nat",
"request": "launch",
"type": "debugpy"
}
]
},
"settings": {
"[python]": {
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
},
"editor.defaultFormatter": "eeyore.yapf",
"editor.formatOnSave": true,
"editor.tabSize": 4
},
"docker.languageserver.formatter.ignoreMultilineInstructions": true,
"editor.rulers": [
120
],
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"flake8.args": [
"--config=pyproject.toml"
],
"isort.args": [
"--settings-file=pyproject.toml"
],
"isort.importStrategy": "fromEnvironment",
"markdown.extension.toc.levels": "1..3",
"pylint.args": [
"--rcfile=pyproject.toml"
],
"pylint.importStrategy": "fromEnvironment",
"python.analysis.exclude": [
// Repeat default options
"**/node_modules",
"**/__pycache__",
".git",
// Ignore the build and dist directory
"build",
"dist",
],
"python.analysis.inlayHints.pytestParameters": true,
"python.analysis.typeCheckingMode": "basic",
"python.languageServer": "Pylance",
"python.envFile": "${workspaceFolder:workspace}/.env",
"python.testing.pytestArgs": [
"-s",
"--run_e2e",
"--run_integration",
"--run_slow",
"tests"
],
"python.testing.pytestEnabled": true,
"python.testing.unittestEnabled": false,
"rewrap.wrappingColumn": 120,
"yapf.args": [
"--style=pyproject.toml"
]
}
}