Skip to content

Instantly share code, notes, and snippets.

@r-i-c-h
Last active April 22, 2023 00:00
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save r-i-c-h/8b8a1d4ba9b3b9ddd34676907c2a1b3f to your computer and use it in GitHub Desktop.
Save r-i-c-h/8b8a1d4ba9b3b9ddd34676907c2a1b3f to your computer and use it in GitHub Desktop.
Rich's .gitignore File
# Rich's .gitignore file:
# See https://help.github.com/ignore-files/...
# leading-slash stops recursion, trailing slash = directory/
# >>>Notes <<<<
notes.txt
notes.md
localnotes.md
tutsrc.txt
# >>> Dependency directories <<<
# jspm_packages/
/node_modules
/.pnp
.pnp.js
# >>> Testing <<<
/coverage
# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
# Coverage directory used by tools like istanbul
*.lcov
## nyc test coverage
.nyc_output
## Stores VSCode versions used for testing VSCode extensions
.vscode-test
# >>> Databases <<<
*.sql
*.sqlite
.firebase/
.firebaserc
/prisma/db.sqlite
/prisma/db.sqlite-journal
# >>> dotenv Environment Variable files <<<
## local env files
*.local
.env
.env.EXAMPLE
.env.test
config.env
variables.env
# >>> BUILD Directories/File <<<
#/public
/build
/dist
/dist-ssr
# >>> Cache Files <<<
## For Parcel.js + Gatsby
.parcel-cache/
.cache
## npm cache directory
.npm
## eslint cache
.eslintcache
## SASS\SCSS:
.sass-cache/
*.css.map
*.sass.map
*.scss.map
##) VSCode Settings
.vscode
# IF using NEXT/NUXT (instead of Gatsby): comment out `public/`
# (see https://nextjs.org/blog/next-9-1#public-directory-support)
# Next.js build output - check to comment out `public/`
# next.js
/.next/
/out/
next-env.d.ts
#.nuxt
# vuepress build output
#.vuepress/dist
# Typescript v1 declaration files
typings/
# >>> Logs / Debug <<<
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*
## Node Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
# Optional REPL history
.node_repl_history
# FuseBox cache
.fusebox/
# DynamoDB Local files
.dynamodb/
# Serverless directories
.vercel
.serverless/
# Runtime data
pids
*.pid
*.seed
*.pid.lock
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt
# Bower dependency directory (https://bower.io/)
bower_components
# node-waf configuration
.lock-wscript
# TernJS port file
.tern-port
# Output of 'npm pack'
*.tgz
## TypeScript cache
*.tsbuildinfo
## Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/
# >>> OS generated files <<<
.DS_Store
._*
*.pem
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# >>> Compressed FIles <<<
# Better to unpack files and commit the raw source
# git has its own built in compression methods
*.7z
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.zip
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment