Skip to content

chore: better oxlint + vscode integration #720

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 25, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
feat: recommend oxc vscode extension when oxlint is chosen
  • Loading branch information
haoqunjiang committed Mar 24, 2025
commit c39531ae77e8dbbb08e3db3bb71db30da3e0e807
4 changes: 4 additions & 0 deletions index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -488,6 +488,10 @@ async function init() {
render('config/eslint')
}

if (needsOxlint) {
render('config/oxlint')
}

if (needsPrettier) {
render('config/prettier')
}
Expand Down
3 changes: 3 additions & 0 deletions template/config/oxlint/.vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"recommendations": ["oxc.oxc-vscode"]
}