Skip to content

Commit

Permalink
feat: add gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
luigibarbato committed Nov 13, 2022
1 parent ff1df31 commit 0b3e8ad
Showing 1 changed file with 43 additions and 28 deletions.
71 changes: 43 additions & 28 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,36 +1,51 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# next.js
/.next/
/out/

# production
/build

# misc
.DS_Store
*.pem

# debug
# Logs
logs
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*

# local env files
.env*.local
# Out
out

# Dist
dist/

# vercel
.vercel
# Dependency directories
node_modules/

# typescript
# TypeScript cache
*.tsbuildinfo
next-env.d.ts

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Yarn Integrity file
.yarn-integrity

# dotenv and direnv environment variable files
.env
.env.development.local
.env.test.local
.env.production.local
.env.local
.envrc
.envrc.development.local
.envrc.test.local
.envrc.production.local
.envrc.local

# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*

# Next.js
.next/

0 comments on commit 0b3e8ad

Please sign in to comment.