From 0b3e8ad16cf9f8fd9df777c4cf43f73e0c380f67 Mon Sep 17 00:00:00 2001 From: Luigi Barbato Date: Sun, 13 Nov 2022 21:19:21 +0100 Subject: [PATCH] feat: add gitignore --- .gitignore | 71 +++++++++++++++++++++++++++++++++--------------------- 1 file changed, 43 insertions(+), 28 deletions(-) diff --git a/.gitignore b/.gitignore index c87c9b3..9d7aafd 100644 --- a/.gitignore +++ b/.gitignore @@ -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/ +