Created
December 31, 2019 14:42
-
-
Save kumaraswins/ce21136e8ca525a4879a6cf2378ea9ca to your computer and use it in GitHub Desktop.
node js gitignore mac files
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
| ########################## | |
| # Application specfic | |
| ########################## | |
| # config/config.js | |
| ########################## | |
| # General | |
| ########################## | |
| ##### | |
| # OS X temporary files | |
| # | |
| # c.f. http://www.westwind.com/reference/os-x/invisibles.html | |
| .DS_Store | |
| # c.f. http://www.westwind.com/reference/os-x/invisibles.html | |
| .Trashes | |
| # c.f. http://www.westwind.com/reference/os-x/invisibles.html | |
| *.swp | |
| ##### | |
| # Node stuff | |
| # | |
| # Logs | |
| logs | |
| *.log | |
| npm-debug.log* | |
| # Runtime data | |
| pids | |
| *.pid | |
| *.seed | |
| # Coverage directory used by tools like istanbul | |
| coverage | |
| # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) | |
| .grunt | |
| # node-waf configuration | |
| .lock-wscript | |
| # Compiled binary addons (http://nodejs.org/api/addons.html) | |
| build/Release | |
| # Dependency directory | |
| # https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git | |
| node_modules |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
changed the file name