Skip to content

Commit 9a83d6f

Browse files
committed
docs(vscode): sync extension recommendations and update documentation
- Added codeandstuff.package-json-upgrade to recommended extensions - Synced .vscode/extensions.json, extensions.md, and consolidated/vscode.md - Updated INDEX.md and consolidated files for extension and doc consistency - Ensured all extension documentation matches workspace recommendations
1 parent 0065121 commit 9a83d6f

6 files changed

Lines changed: 18 additions & 7 deletions

File tree

.vscode/extensions.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
"streetsidesoftware.code-spell-checker",
1414
"github.vscode-pull-request-github",
1515
"atlassian.atlascode",
16-
"mechatroner.rainbow-csv"
16+
"mechatroner.rainbow-csv",
17+
"brunnerh.insert-unicode",
18+
"antfu.file-nesting",
19+
"codeandstuff.package-json-upgrade"
1720
]
1821
}

INDEX.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,5 @@ These consolidated files group related configurations for single-fetch efficienc
4040
@github https://raw.githubusercontent.com/dantman/stack/refs/heads/main/INDEX.md
4141
```
4242

43-
*Generated: Thu Jun 12 16:51:17 UTC 2025*
43+
*Generated: Thu Jun 12 10:38:40 PDT 2025*
4444
*Repository: https://github.com/dantman/stack*

consolidated/tooling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,5 +387,5 @@ npm run format
387387

388388
---
389389

390-
*Consolidated from multiple source files on Thu Jun 12 16:51:17 UTC 2025*
390+
*Consolidated from multiple source files on Thu Jun 12 10:38:40 PDT 2025*
391391
*Source files: tooling/prettier/setup.md tooling/dependabot.md tooling/package-scripts.md*

consolidated/vscode.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -417,6 +417,9 @@ This document lists recommended VS Code extensions for Daniel's TypeScript-based
417417
- [NPM Scripts](https://marketplace.visualstudio.com/items?itemName=fknop.vscode-npm) — Adds NPM scripts explorer and task integration, making it easier to run and manage project scripts directly from VS Code.
418418
- [Code Spell Checker](https://marketplace.visualstudio.com/items?itemName=streetsidesoftware.code-spell-checker) — Provides in-editor spell checking for source code, comments, and documentation, helping catch typos and improve code quality.
419419
- [Rainbow CSV](https://marketplace.visualstudio.com/items?itemName=mechatroner.rainbow-csv) — Highlights CSV and TSV files, and allows running SQL-like queries on tabular data, making it easier to inspect and manipulate data files in your projects.
420+
- [Insert Unicode](https://marketplace.visualstudio.com/items?itemName=brunnerh.insert-unicode) — Lets you search for and insert Unicode characters directly into your documents, useful for symbols and special characters.
421+
- [File Nesting Updater](https://marketplace.visualstudio.com/items?itemName=antfu.file-nesting) — Automatically updates Anthony Fu's file nesting config for improved file organization in the VS Code explorer.
422+
- [Package Json Upgrade](https://marketplace.visualstudio.com/items?itemName=codeandstuff.package-json-upgrade) — Shows available updates in package.json files, offers quick fixes to update dependencies, and displays changelogs for easy package maintenance.
420423

421424
---
422425

@@ -426,14 +429,15 @@ These extensions are recommended for specific workflows or environments:
426429

427430
- [GitHub Pull Requests](https://marketplace.visualstudio.com/items?itemName=github.vscode-pull-request-github) — Recommended if your repository is hosted on GitHub. Enables pull request management, code reviews, and issue tracking directly within VS Code.
428431
- [Atlassian: Jira & Bitbucket](https://marketplace.visualstudio.com/items?itemName=atlassian.atlascode) — Recommended if your project uses Jira for issue tracking or Bitbucket for source control. Integrates Jira issues and Bitbucket pull requests into your workflow.
432+
- [Astro](https://marketplace.visualstudio.com/items?itemName=astro-build.astro-vscode) — Recommended for Astro projects. Provides language support, syntax highlighting, and tooling for Astro static site development.
429433

430-
*Only add these to your recommended extensions if your project uses the corresponding services.*
434+
*Only add these to your recommended extensions if your project uses the corresponding services or frameworks.*
431435

432436
---
433437

434438
*To update the recommended extensions, edit this file and update `.vscode/extensions.json` accordingly.*
435439

436440
---
437441

438-
*Consolidated from multiple source files on Thu Jun 12 16:51:17 UTC 2025*
442+
*Consolidated from multiple source files on Thu Jun 12 10:38:40 PDT 2025*
439443
*Source files: tooling/vscode/settings.md tooling/vscode/tasks.md tooling/vscode/mcp-servers.md tooling/vscode/extensions.md*

consolidated/workspace.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,5 @@ You are setting up a new project workspace. Your job is to configure the workspa
5757

5858
---
5959

60-
*Consolidated from multiple source files on Thu Jun 12 16:51:17 UTC 2025*
60+
*Consolidated from multiple source files on Thu Jun 12 10:38:40 PDT 2025*
6161
*Source files: tooling/WorkspaceSetup.prompt.md*

tooling/vscode/extensions.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ This document lists recommended VS Code extensions for Daniel's TypeScript-based
2020
- [NPM Scripts](https://marketplace.visualstudio.com/items?itemName=fknop.vscode-npm) — Adds NPM scripts explorer and task integration, making it easier to run and manage project scripts directly from VS Code.
2121
- [Code Spell Checker](https://marketplace.visualstudio.com/items?itemName=streetsidesoftware.code-spell-checker) — Provides in-editor spell checking for source code, comments, and documentation, helping catch typos and improve code quality.
2222
- [Rainbow CSV](https://marketplace.visualstudio.com/items?itemName=mechatroner.rainbow-csv) — Highlights CSV and TSV files, and allows running SQL-like queries on tabular data, making it easier to inspect and manipulate data files in your projects.
23+
- [Insert Unicode](https://marketplace.visualstudio.com/items?itemName=brunnerh.insert-unicode) — Lets you search for and insert Unicode characters directly into your documents, useful for symbols and special characters.
24+
- [File Nesting Updater](https://marketplace.visualstudio.com/items?itemName=antfu.file-nesting) — Automatically updates Anthony Fu's file nesting config for improved file organization in the VS Code explorer.
25+
- [Package Json Upgrade](https://marketplace.visualstudio.com/items?itemName=codeandstuff.package-json-upgrade) — Shows available updates in package.json files, offers quick fixes to update dependencies, and displays changelogs for easy package maintenance.
2326

2427
---
2528

@@ -29,8 +32,9 @@ These extensions are recommended for specific workflows or environments:
2932

3033
- [GitHub Pull Requests](https://marketplace.visualstudio.com/items?itemName=github.vscode-pull-request-github) — Recommended if your repository is hosted on GitHub. Enables pull request management, code reviews, and issue tracking directly within VS Code.
3134
- [Atlassian: Jira & Bitbucket](https://marketplace.visualstudio.com/items?itemName=atlassian.atlascode) — Recommended if your project uses Jira for issue tracking or Bitbucket for source control. Integrates Jira issues and Bitbucket pull requests into your workflow.
35+
- [Astro](https://marketplace.visualstudio.com/items?itemName=astro-build.astro-vscode) — Recommended for Astro projects. Provides language support, syntax highlighting, and tooling for Astro static site development.
3236

33-
*Only add these to your recommended extensions if your project uses the corresponding services.*
37+
*Only add these to your recommended extensions if your project uses the corresponding services or frameworks.*
3438

3539
---
3640

0 commit comments

Comments
 (0)