Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
"editor.codeActionsOnSave": {
"source.organizeImports": "never" // let oxfmt handle import organization
},
// Disable TypeScript's error checking — Oxlint handles this via the Oxc language server.
// VS Code's bundled TS version can disagree with Oxlint's newer TS support (via tsgolint).
"js/ts.validate.enabled": false,
Copy link

Copilot AI Mar 12, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The setting key js/ts.validate.enabled doesn’t match VS Code’s built-in JS/TS validation settings, so this likely has no effect. To actually disable diagnostics from the TypeScript language service, use "typescript.validate.enable": false (and optionally "javascript.validate.enable": false if you also want JS files to stop showing TS-server validation errors).

Suggested change
"js/ts.validate.enabled": false,
"typescript.validate.enable": false,
"javascript.validate.enable": false,

Copilot uses AI. Check for mistakes.
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The settings you suggest are out of date. js/ts.validate.enabled is the setting in current VS Code.

"[rust]": {
"editor.defaultFormatter": "rust-lang.rust-analyzer"
}
Expand Down
Loading