maintenance(ide): sync VS Code extensions + settings so install-profile base is a no-op - #52
Open
abarrows wants to merge 1 commit into
Open
maintenance(ide): sync VS Code extensions + settings so install-profile base is a no-op#52abarrows wants to merge 1 commit into
install-profile base is a no-op#52abarrows wants to merge 1 commit into
Conversation
…le base is idempotent
Contributor
Reviewer's guide (collapsed on small PRs)Reviewer's GuideSyncs the repo’s VS Code extensions and settings with the current machine so File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
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.
Brings the dotfiles VS Code config in sync with the current machine so
./install-profile baseis idempotent (installs and re-links nothing).Why: VS Code Settings Sync had drifted the machine from the repo (it silently uninstalled eslint + prettier). This makes the repo the single source of truth again.
Extension lists — every entry in
extensions_base.txt(whatinstall-profile baseinstalls) is now already-installed, so the install loop is a no-op:GitHub.copilot(now bundled into VS Code) andPKief.material-icon-theme(unused) fromextensions_base.txt.settings.json:
eslint.debug,prettier.enableDebugLogs, yaml/html/markdown trace,atlascode.outputLevel,dev.containers.logLevel,liveshare.diagnosticLogging,grammarly.debug.editor.largeFileOptimizations→true, removeddiffEditor.maxComputationTime: 0,scm.diffDecorationsIgnoreTrimWhitespacestring→boolean.typescript.tsserver.watchOptions(FSEvents-on-parent-dir) to cut tsserver open-fd usage; addedcoverage/buildtofiles.watcherExclude.settingsSync.ignoredExtensionsas a safety net.README: documents that dotfiles (not Settings Sync) owns extensions — with the exact "turn off the Extensions resource in Settings Sync" steps and the 2026-08-11 eslint/prettier incident.
Verification:
extensions_base.txt⊆ installed (gap = 0);ide.ymlsymlinks already point correctly.Summary by Sourcery
Align VS Code IDE configuration with the current machine so the base profile install becomes idempotent and the repo is the source of truth for editor setup.
New Features:
Enhancements: