|
26 | 26 | * editor
|
27 | 27 | * controls useability
|
28 | 28 | * good read: https://stackoverflow.com/questions/44831313/how-to-exclude-file-extensions-and-languages-from-format-on-save-in-vscode/44831631#44831631
|
29 |
| - * |
| 29 | + * set peek type: https://stackoverflow.com/questions/61412688/how-to-view-full-type-definition-on-hover-in-vscode-typescript |
30 | 30 | */
|
31 | 31 |
|
32 | 32 | "editor.acceptSuggestionOnEnter": "smart",
|
33 | 33 | "editor.accessibilitySupport": "off",
|
34 | 34 | "editor.autoIndent": "advanced",
|
35 | 35 | "editor.bracketPairColorization.independentColorPoolPerBracketType": true,
|
36 |
| - "editor.codeActionsOnSave": { "source.fixAll": false }, |
| 36 | + "editor.codeActionsOnSave": { |
| 37 | + "source.fixAll": "never" |
| 38 | + }, |
37 | 39 | "editor.cursorBlinking": "phase",
|
38 | 40 | "editor.cursorStyle": "line",
|
39 | 41 | "editor.cursorSurroundingLines": 2,
|
|
113 | 115 | "workbench.colorTheme": "Default High Contrast Light",
|
114 | 116 | "workbench.editor.closeEmptyGroups": true,
|
115 | 117 | "workbench.editor.highlightModifiedTabs": true,
|
116 |
| - "workbench.editor.showTabs": true, // dont set this false ;) |
| 118 | + "workbench.editor.showTabs": "multiple", // dont set this false ;) |
117 | 119 | "workbench.editor.tabCloseButton": "right",
|
118 | 120 | "workbench.editor.tabSizing": "shrink",
|
119 | 121 | "workbench.panel.defaultLocation": "right",
|
|
279 | 281 | "vbscript": "cscript //Nologo",
|
280 | 282 | "zig": "zig run"
|
281 | 283 | },
|
282 |
| - "window.zoomLevel": 1, |
283 | 284 | "workbench.statusBar.visible": false,
|
284 |
| - "workbench.sideBar.location": "right" |
| 285 | + "workbench.sideBar.location": "right", |
| 286 | + "xml.server.vmargs": "-Xmx128M", |
| 287 | + "window.zoomLevel": 1, |
| 288 | + "openapi.platformUrl": "https://platform.42crunch.com", |
| 289 | + "openapi.platformServices": "", |
| 290 | + "openapi.platformScandManager": { |
| 291 | + "url": "", |
| 292 | + "auth": "none", |
| 293 | + "header": { |
| 294 | + "name": "", |
| 295 | + "value": "" |
| 296 | + } |
| 297 | + }, |
| 298 | + "openapi.docker": { |
| 299 | + "replaceLocalhost": true, |
| 300 | + "useHostNetwork": true |
| 301 | + }, |
| 302 | + "openapi.platformConformanceScanRuntime": "docker", |
| 303 | + "openapi.platformConformanceScanImage": "42crunch/scand-agent:v2.0.0" |
285 | 304 | }
|
0 commit comments