- Node.js: v22.17.1
- Platform: darwin arm64 (Apple Silicon)
- Date: 2026-01-27
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
| # Add all build artifacts here | |
| build | |
| dist |
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
| [ | |
| { | |
| "key": "ctrl+t", | |
| "command": "extension.transpose" | |
| }, | |
| { | |
| "key": "ctrl+cmd+w", | |
| "command": "workbench.action.closeAllEditors" | |
| }, | |
| { |
Give yourself as many chances as you can to catch your mistakes before you push them:
- Use an editor plugin like Sublime Text's GitGutter so you can always see which parts of a file you've changed. (More precisely, it shows the diff of the file between the working directory and HEAD.)
- Not sure whether to stage your unstaged changes? Use
git diffwith no arguments. It shows the difference between your working directory and the index. - Not sure whether to commit your staged changes? Use
git diff --staged. It shows the difference between your index and HEAD. - When you decide to commit, use
git commit --verbose, no-m, and take one last look at the changes in your editor. (Make sure it's got a nice Git Commit Message syntax, like the one in the Sublime Text Git package, so the list of changes is nice and colorized.) You can't edit the changes directl