-
Notifications
You must be signed in to change notification settings - Fork 0
/
vulnetix.code-workspace
79 lines (79 loc) · 1.7 KB
/
vulnetix.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
72
73
74
75
76
77
78
79
{
"folders": [
{
"path": "."
}
],
"settings": {
"sqltools.useNodeRuntime": true,
"editor.formatOnSave": true,
"files.insertFinalNewline": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[typescript]": {
"editor.defaultFormatter": "vscode.typescript-language-features",
"editor.autoClosingBrackets": "always"
},
"[markdown]": {
"editor.defaultFormatter": "DavidAnson.vscode-markdownlint",
"editor.cursorSurroundingLines": 0
},
"[scss]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[vue]": {
"editor.defaultFormatter": "Vue.volar"
},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
"source.fixAll.stylelint": "explicit",
"source.organizeImports": "explicit"
},
"eslint.format.enable": true,
"cSpell.words": [
"axios",
"cisa",
"Composables",
"csaf",
"Customizer",
"cwes",
"cyclonedx",
"dotfile",
"epss",
"flagpack",
"ghid",
"icache",
"Iconify",
"octodex",
"pinia",
"psudo",
"sarif",
"sast",
"ssvc",
"stylelint",
"touchless",
"triggerer",
"Vuelidate",
"vuetify",
"vulncheck",
"Vulnetix",
"vulns"
],
"sqltools.connections": [
{
"previewLimit": 50,
"driver": "SQLite",
"name": "vulnetix",
"database": "${workspaceFolder:vulnetix}/.wrangler/state/v3/d1/miniflare-D1DatabaseObject/5739f20a3d0d5e6506506143f65618856465fde8eb11c9ee70bd2ebed4ac5dd4.sqlite"
}
]
}
}