Skip to content

Commit 7c11b2b

Browse files
committed
code
1 parent 5e6a627 commit 7c11b2b

File tree

3 files changed

+28
-5
lines changed

3 files changed

+28
-5
lines changed

languages/javascript/typeSystems/typescript.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# typescript
22

3+
- [almost 1 to 1 with jsdoc](https://tsdoc.org/)
34
- bookmark: https://www.typescriptlang.org/docs/handbook/declaration-files/library-structures.html#global-libraries
45
- [utility types](https://www.typescriptlang.org/docs/handbook/utility-types.html)
56
- this is the beginning of the reference

vscode.md

+3
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@
2626
- `ctrl b` toggle explorer
2727
- `ctrl shift e` open workspace explorer
2828
- `ctrl backtick` toggle terminal
29+
- `ctrl k ctrl s` see all shortcuts
30+
- `ctrl k trl p` open file search
31+
- `ctrl p` any file search
2932
- cli
3033
- code-insiders --user-data-dir /tmp/test-vscode-panel
3134
- directories

vscode.settings.jsonc

+24-5
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,16 @@
2626
* editor
2727
* controls useability
2828
* 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
3030
*/
3131

3232
"editor.acceptSuggestionOnEnter": "smart",
3333
"editor.accessibilitySupport": "off",
3434
"editor.autoIndent": "advanced",
3535
"editor.bracketPairColorization.independentColorPoolPerBracketType": true,
36-
"editor.codeActionsOnSave": { "source.fixAll": false },
36+
"editor.codeActionsOnSave": {
37+
"source.fixAll": "never"
38+
},
3739
"editor.cursorBlinking": "phase",
3840
"editor.cursorStyle": "line",
3941
"editor.cursorSurroundingLines": 2,
@@ -113,7 +115,7 @@
113115
"workbench.colorTheme": "Default High Contrast Light",
114116
"workbench.editor.closeEmptyGroups": true,
115117
"workbench.editor.highlightModifiedTabs": true,
116-
"workbench.editor.showTabs": true, // dont set this false ;)
118+
"workbench.editor.showTabs": "multiple", // dont set this false ;)
117119
"workbench.editor.tabCloseButton": "right",
118120
"workbench.editor.tabSizing": "shrink",
119121
"workbench.panel.defaultLocation": "right",
@@ -279,7 +281,24 @@
279281
"vbscript": "cscript //Nologo",
280282
"zig": "zig run"
281283
},
282-
"window.zoomLevel": 1,
283284
"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"
285304
}

0 commit comments

Comments
 (0)