Skip to content

chore: update recommended editor extensions #3988

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 1 commit into from
Feb 8, 2024
Merged
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
6 changes: 5 additions & 1 deletion etc/notes/editor.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ Here's a quick description of each:
- `github.vscode-pull-request-github` - With this you can manage and make pull requests right from VSCode, even reviews can be done via the editor.
- `eamodio.gitlens` - Gives spectacular insight into git history, has many helpful git navigation UI features.
- `mongodb.mongodb-vscode` - Our VScode extension can be connected to your locally running MongoDB instance (to help debug tests, etc.)
- `rbuckton.deoptexplorer-vscode` - De-opt explorer can visualize the results of running Node.js profiling results on top of your source code (Run things with `dexnode` for easy use!)
- `ms-vscode.vscode-js-profile-flame` - Use this to monitor performance while running node, and if you have a `.cpuprofile` in the current workspace you can view a flamegraph visualization

```jsonc
{
Expand Down Expand Up @@ -69,7 +71,9 @@ Here's a quick description of each:
"hbenl.vscode-mocha-test-adapter",
"github.vscode-pull-request-github",
"mongodb.mongodb-vscode",
"eamodio.gitlens"
"eamodio.gitlens",
"rbuckton.deoptexplorer-vscode",
"ms-vscode.vscode-js-profile-flame",
],
"unwantedRecommendations": [
"esbenp.prettier-vscode"
Expand Down