chore(vscode): editor settings + recommended extensions - #34
Merged
Conversation
…lude build dirs - eslint.validate includes vue so .vue files are linted in-editor - typescript.tsdk points at the workspace TypeScript (we pin TS to 6.x; keeps the editor aligned with the build) - .vscode/extensions.json recommends Vue (Volar), ESLint, Prettier, Tailwind IntelliSense - exclude .nuxt/.output/node_modules from search + file watcher (perf) Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Improves the committed VS Code workspace config.
.vscode/settings.jsoneslint.validatenow includesvue→.vuefiles get linted in-editor (matches our flat ESLint config).typescript.tsdk+enablePromptUseWorkspaceTsdk→ the editor uses the workspace TypeScript. Important because we pin TS to 6.x (typescript-eslint/vue-tsc don't support 7 yet); this keeps IntelliSense aligned with whatnuxt builduses.search.exclude+files.watcherExcludefor.nuxt/.output/node_modules→ faster search and less CPU on file watching..vscode/extensions.json(new)Recommends the extensions the settings rely on: Vue (Volar), ESLint, Prettier, and Tailwind CSS IntelliSense (Nuxt UI uses Tailwind) — so contributors get prompted to install them.
🤖 Generated with Claude Code