mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2026-06-05 20:15:31 -04:00
5a1636baa3
- Replace Biome with oxlint + oxfmt (OXC toolchain) for linting and formatting - Add .oxlintrc.json and .oxfmtrc.json configuration files - Update VS Code settings and devcontainer to use oxc-vscode extension - Remove contact form, Resend email integration, and related server action/schema - Remove unused UI components (accordion, alert, card, tabs, toggle, etc.)
45 lines
1.0 KiB
JSON
45 lines
1.0 KiB
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
|
|
},
|
|
"emmet.showExpandedAbbreviation": "never",
|
|
"[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"
|
|
},
|
|
"files.associations": {
|
|
"*.css": "tailwindcss",
|
|
"*.mdx": "markdown"
|
|
}
|
|
}
|