Change gitignore generated app

This commit is contained in:
Jim Laurie 2017-11-06 14:47:00 +01:00
parent 7c773f91b4
commit 1604ffe658
2 changed files with 101 additions and 3 deletions

View File

@ -0,0 +1,101 @@
############################
# OS X
############################
.DS_Store
.AppleDouble
.LSOverride
Icon
.Spotlight-V100
.Trashes
._*
############################
# Linux
############################
*~
############################
# Windows
############################
Thumbs.db
ehthumbs.db
Desktop.ini
$RECYCLE.BIN/
*.cab
*.msi
*.msm
*.msp
############################
# Packages
############################
*.7z
*.csv
*.dat
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.zip
*.com
*.class
*.dll
*.exe
*.o
*.seed
*.so
*.swo
*.swp
*.swn
*.swm
*.out
*.pid
############################
# Logs and databases
############################
*.log
*.sql
############################
# Misc.
############################
*#
ssl
.idea
nbproject
############################
# Node.js
############################
lib-cov
lcov.info
pids
logs
results
node_modules
.node_history
package-lock.json
############################
# Tests
############################
testApp
coverage

View File

@ -33,9 +33,6 @@ module.exports = {
'.editorconfig': {
copy: 'editorconfig'
},
'.gitignore': {
copy: 'gitignore'
},
'.npmignore': {
copy: 'npmignore'
},