70 lines
872 B
Plaintext
70 lines
872 B
Plaintext
# Specifies intentionally untracked files to ignore when using Git
|
|
# http://git-scm.com/docs/gitignore
|
|
|
|
*~
|
|
*.sw[mnpcod]
|
|
.tmp
|
|
*.tmp
|
|
*.tmp.*
|
|
*.sublime-project
|
|
*.sublime-workspace
|
|
.DS_Store
|
|
Thumbs.db
|
|
UserInterfaceState.xcuserstate
|
|
$RECYCLE.BIN/
|
|
|
|
*.log
|
|
log.txt
|
|
npm-debug.log*
|
|
|
|
/.angular
|
|
/.idea
|
|
/.ionic
|
|
/.sass-cache
|
|
/.sourcemaps
|
|
/.versions
|
|
/.vscode
|
|
/coverage
|
|
/dist
|
|
/node_modules
|
|
/platforms
|
|
/plugins
|
|
/www
|
|
|
|
# Firebase
|
|
.firebase
|
|
*-debug.log
|
|
.runtimeconfig.json
|
|
src/app/app.constant.ts
|
|
|
|
|
|
# dependencies
|
|
/node_modules
|
|
/.pnp
|
|
.pnp.js
|
|
|
|
# testing
|
|
/coverage
|
|
|
|
# production
|
|
/build
|
|
|
|
# misc
|
|
.DS_Store
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
.vscode
|
|
.idea
|
|
|
|
/src/app/firebase.json
|
|
/src/environments/environment.prod.ts
|
|
/src/environments/environment.ts
|
|
/src/app/app.constant.ts
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Optional eslint cache
|
|
.eslintcache |