Skip to content
This repository has been archived by the owner on Aug 25, 2018. It is now read-only.

Commit

Permalink
🔧 Ignore automatic files
Browse files Browse the repository at this point in the history
Minor .gitignore upgrade:
  - Remove duplicated folders
  - Upgrade list of automatically created files that should be ignored
  - Use GitHub Node.js .gitignore template (see https://goo.gl/hx0XE)
  - Also ignore Emacs and VSCode automatic files
  • Loading branch information
jpventura committed Nov 2, 2016
1 parent 79bdd59 commit 8462402
Showing 1 changed file with 60 additions and 5 deletions.
65 changes: 60 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,61 @@
dist/
test/coverage/
node_modules/
bower_components/
# Logs
*.log
logs
npm-debug.log*

# Runtime data
*.pid
*.pid.lock
*.seed
pids

# 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

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directories
bower_components
jspm_packages
node_modules

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Directory used by test tools like Coverage and Grump
dist
test/coverage
.idea

# Emacs
*~
.*~
.\#*
\#*

# JetBrains WebStorm
.idea

# Microsoft Visual Studio Code
.vscode

0 comments on commit 8462402

Please sign in to comment.