Last active
September 24, 2025 15:13
-
-
Save sandalsoft/9ce8d5454f00efa6e42d5b5f5a9f5af8 to your computer and use it in GitHub Desktop.
my node gitignore
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
| # UPDATED 9/24/2025 | |
| # DAMN YOU MACOS FINDER 🖕 | |
| .DS_Store | |
| .env | |
| # Always check-in examples | |
| !.env.example | |
| !.env_example | |
| # Runtime data | |
| pids | |
| *.pid | |
| *.seed | |
| *.pid.lock | |
| # Dependency directories | |
| node_modules | |
| # vim | |
| .*.sw* | |
| Session.vim | |
| # Always include everything in ./src even if it matches a pattern below | |
| !src/ | |
| # Build directory | |
| dist/* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment