Skip to content

Instantly share code, notes, and snippets.

@charlwillia6
Forked from andreasonny83/.gitignore
Last active September 23, 2019 18:26
Show Gist options
  • Save charlwillia6/5d5339afda47744d82cf77e190c8d660 to your computer and use it in GitHub Desktop.
Save charlwillia6/5d5339afda47744d82cf77e190c8d660 to your computer and use it in GitHub Desktop.
Gitignore template for JavaScript projects
# See http://help.github.com/ignore-files/ for more about ignoring files.
# Compiled output
/dist
/tmp
/out-tsc
/build
# Runtime data
pids
*.pid
*.seed
*.pid.lock
# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
# Coverage directory used by tools like istanbul
/coverage
# NYC test coverage
.nyc_output
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt
# Bower dependency directory (https://bower.io/)
bower_components
# node-waf configuration
.lock-wscript
# IDEs and editors
.idea
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace
.vscode/
# !.vscode/settings.json
# !.vscode/tasks.json
# !.vscode/launch.json
# !.vscode/extensions.json
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# NPM package.json
package-lock.json
# Dependency directories
node_modules/
jspm_packages/
/.pnp
.pnp.js
# Optional npm cache directory
.npm
# Optional eslint cache
.eslintcache
# Optional REPL history
.node_repl_history
# Output of 'npm pack'
*.tgz
# Yarn Integrity file
.yarn-integrity
# dotenv environment variables file
.env
# next.js build output
.next
# Lerna
lerna-debug.log
# System Files
.DS_Store
Thumbs.db
# Miscellaneous
.sass-cache
connect.lock
typings
.env.local
.env.development.local
.env.test.local
.env.production.local
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment