Created
January 28, 2019 11:13
-
-
Save chris-jamieson/512e1aa0f1ae1f25d9af15528d42e161 to your computer and use it in GitHub Desktop.
Basic gitignore starter
This file contains 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
# Logs | |
logs | |
*.log | |
npm-debug.log* | |
# Runtime data | |
pids | |
*.pid | |
*.seed | |
# IDE | |
.idea | |
# OS generated files | |
.DS_Store | |
.DS_Store? | |
._* | |
.Spotlight-V100 | |
ehthumbs.db | |
Icon? | |
Thumbs.db | |
# Babel ES6 compiles files | |
dist | |
# Directory for instrumented libs generated by jscoverage/JSCover | |
lib-cov | |
# 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 | |
node_modules | |
# Optional npm cache directory | |
.npm | |
# Optional REPL history | |
.node_repl_history | |
# Elastic Beanstalk | |
.elasticbeanstalk/ | |
# Environment variables | |
.env | |
# zipped dist file | |
dist.zip | |
# Elastic Beanstalk Files | |
.elasticbeanstalk/* | |
!.elasticbeanstalk/*.cfg.yml | |
!.elasticbeanstalk/*.global.yml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment