Initial commit with .gitignore
This commit is contained in:
commit
d73c040d56
4 changed files with 547 additions and 0 deletions
82
.gitignore
vendored
Normal file
82
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,82 @@
|
|||
# Dependencies
|
||||
node_modules/
|
||||
.pnp/
|
||||
.pnp.js
|
||||
yarn-debug.log
|
||||
yarn-error.log
|
||||
|
||||
# Build outputs
|
||||
dist/
|
||||
build/
|
||||
out/
|
||||
*.br
|
||||
*.bundle
|
||||
*.zip
|
||||
.nuxt/
|
||||
.nuxt-dev/
|
||||
|
||||
# Testing
|
||||
coverage/
|
||||
.nyc_output/
|
||||
test-results/
|
||||
|
||||
# Environment
|
||||
.env
|
||||
.env.local
|
||||
.env.*.local
|
||||
*.env*.local
|
||||
|
||||
# IDE
|
||||
.idea/
|
||||
.vscode/
|
||||
*.swp
|
||||
*.swo
|
||||
.*~
|
||||
.project
|
||||
.settings/
|
||||
.classpath
|
||||
|
||||
# OS
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
*.pem
|
||||
.AppleDouble
|
||||
.Spotlight-V100
|
||||
.Trashes
|
||||
evidence/
|
||||
.AppleDouble
|
||||
|
||||
# Lock files (if you prefer to track dependencies)
|
||||
package-lock.json
|
||||
yarn.lock
|
||||
pnpm-lock.yaml
|
||||
|
||||
# TypeScript
|
||||
*.tsbuildinfo
|
||||
|
||||
# Logs
|
||||
logs/
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
lerna-debug.log*
|
||||
|
||||
# Temporary files
|
||||
.tmp/
|
||||
*.tmp
|
||||
*.temp
|
||||
.cache/
|
||||
npm-cache/
|
||||
yarn-cache/
|
||||
.eslintcache
|
||||
.stylelintcache
|
||||
.prettiercache
|
||||
|
||||
# Misc
|
||||
*.bak
|
||||
*.backup
|
||||
*.sublime-*
|
||||
.sass-cache
|
||||
parcel-cache.json
|
||||
.pnp.*
|
||||
Loading…
Add table
Add a link
Reference in a new issue