mirror of
https://github.com/jakejarvis/stanza.git
synced 2026-07-16 18:05:58 -04:00
41 lines
978 B
JSON
41 lines
978 B
JSON
{
|
|
"typescript.tsdk": "node_modules/typescript/lib",
|
|
"editor.defaultFormatter": "oxc.oxc-vscode",
|
|
"editor.formatOnSave": true,
|
|
"editor.formatOnPaste": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.oxlint": "explicit"
|
|
},
|
|
"files.readonlyInclude": {
|
|
"**/routeTree.gen.ts": true
|
|
},
|
|
"files.watcherExclude": {
|
|
"**/routeTree.gen.ts": true
|
|
},
|
|
"search.exclude": {
|
|
"**/routeTree.gen.ts": true
|
|
},
|
|
"[javascript]": {
|
|
"editor.defaultFormatter": "oxc.oxc-vscode"
|
|
},
|
|
"[typescript]": {
|
|
"editor.defaultFormatter": "oxc.oxc-vscode"
|
|
},
|
|
"[javascriptreact]": {
|
|
"editor.defaultFormatter": "oxc.oxc-vscode"
|
|
},
|
|
"[typescriptreact]": {
|
|
"editor.defaultFormatter": "oxc.oxc-vscode"
|
|
},
|
|
"[json]": {
|
|
"editor.defaultFormatter": "oxc.oxc-vscode"
|
|
},
|
|
"[jsonc]": {
|
|
"editor.defaultFormatter": "oxc.oxc-vscode"
|
|
},
|
|
"[css]": {
|
|
"editor.defaultFormatter": "oxc.oxc-vscode"
|
|
},
|
|
"oxc.fmt.configPath": "./vite.config.ts"
|
|
}
|