Last active
December 4, 2025 18:56
-
-
Save Alecto/cd22519af19c3f6e5f53bea8a6bab6a8 to your computer and use it in GitHub Desktop.
Custom .gitignore template
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
| # System files | |
| .DS_Store | |
| Thumbs.db | |
| # Node.js | |
| node_modules/ | |
| npm-debug.log* | |
| yarn-debug.log* | |
| yarn-error.log* | |
| # Build outputs | |
| dist/ | |
| build/ | |
| .out/ | |
| .next/ | |
| .angular/cache/ | |
| # Environment files | |
| .env | |
| .env.local | |
| .env.*.local | |
| # IDEs | |
| .idea/ | |
| .vscode/ | |
| *.code-workspace | |
| # Debug and logs | |
| *.log | |
| *.log.* | |
| *.js.map | |
| *.d.ts | |
| # Test coverage | |
| coverage/ | |
| # SASS cache | |
| .sass-cache/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment