mirror of
https://github.com/wavetermdev/waveterm
synced 2026-04-21 14:37:16 +00:00
lots of stuff here. introduces a streaming framework for the RPC system with flow control. new authentication primitives for the RPC system. this is used to create a persistent "job manager" process (via wsh) that can survive disconnects. and then a jobcontroller in the main server that can create, reconnect, and manage these new persistent jobs. code is currently not actively hooked up to anything minus some new debugging wsh commands, and a switch in the term block that lets me test viewing the output. after PRing this change the next steps are more testing and then integrating this functionality into the product.
68 lines
1.8 KiB
JSON
68 lines
1.8 KiB
JSON
{
|
|
"editor.formatOnSave": true,
|
|
"editor.detectIndentation": false,
|
|
"editor.formatOnPaste": true,
|
|
"editor.tabSize": 4,
|
|
"editor.insertSpaces": false,
|
|
"prettier.useEditorConfig": true,
|
|
"diffEditor.renderSideBySide": false,
|
|
"[javascript]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"[javascriptreact]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"[typescript]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"[typescriptreact]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"[less]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"[scss]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"[css]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"[html]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"[json]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"[yaml]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.insertSpaces": true,
|
|
"editor.autoIndent": "keep"
|
|
},
|
|
"[github-actions-workflow]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.insertSpaces": true,
|
|
"editor.autoIndent": "keep"
|
|
},
|
|
"[go]": {
|
|
"editor.defaultFormatter": "golang.go"
|
|
},
|
|
"[mdx]": {
|
|
"editor.wordWrap": "on"
|
|
},
|
|
"[md]": {
|
|
"editor.wordWrap": "on"
|
|
},
|
|
"files.associations": {
|
|
"*.css": "tailwindcss"
|
|
},
|
|
"gopls": {
|
|
"analyses": {
|
|
"QF1003": false
|
|
},
|
|
"directoryFilters": ["-tsunami/frontend/scaffold", "-dist", "-make"]
|
|
},
|
|
"tailwindCSS.lint.suggestCanonicalClasses": "ignore",
|
|
"go.coverageDecorator": {
|
|
"type": "gutter"
|
|
}
|
|
}
|