From bf80c10b402eec60857edf46be67fd536178b1b6 Mon Sep 17 00:00:00 2001 From: Vitaly Rtishchev Date: Sun, 9 Aug 2026 10:03:07 +0300 Subject: [PATCH] Add VSCode settings to use oxc for linting and formatting Co-Authored-By: Claude Opus 5 --- .vscode/settings.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..4e38aeb --- /dev/null +++ b/.vscode/settings.json @@ -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" + } +}