Add VSCode settings to use oxc for linting and formatting

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
Vitaly Rtishchev
2026-08-09 10:03:07 +03:00
co-authored by Claude Opus 5
parent 4442e6c232
commit bf80c10b40
+17
View File
@@ -0,0 +1,17 @@
{
"editor.defaultFormatter": "oxc.oxc-vscode",
"editor.formatOnSave": true,
"oxc.lint.enable": true,
"oxc.configPath": "oxlint.config.mjs",
"oxc.fmt.configPath": "oxfmt.config.mjs",
"eslint.enable": false,
"[typescript]": {
"editor.defaultFormatter": "oxc.oxc-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "oxc.oxc-vscode"
},
"[css]": {
"editor.defaultFormatter": "oxc.oxc-vscode"
}
}