From 98cfb26cf47b29ac0b2c62ade969cd71ce1d8e77 Mon Sep 17 00:00:00 2001 From: Matthieu Morin Date: Fri, 31 May 2024 20:10:04 +0200 Subject: [PATCH] my universal gitignore --- .gitignore | 95 +++++++++++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 87 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index a19f004..012e4bd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,11 +1,90 @@ -# ---> Vue -# gitignore template for Vue.js projects -# -# Recommended template: Node.gitignore +/.svelte-kit +.turbo +/build +/dist +/dist-ssr -# TODO: where does this rule come from? -docs/_book +# modules +.DS_Store +node_modules +/package -# TODO: where does this rule come from? -test/ +# Sentry Config File +.sentryclirc +#ENV vars +.env +.env.* +!.env.example +*.local + +# Husky +.husky +.tool-versions + +# vite +vite.config.js.timestamp-* +vite.config.ts.timestamp-* +__unconfig_vite.config.js + +# serverless +/lambda + +# Local Vercel +.vercel +.vercel_build_ouput + +# TODO: Output +.output + +# Local Netlify folder +.netlify + +#internalization +/src/i18n/i18n-* + +#cypress +cypress/screenshots +cypress/videos + +# Playwright +/test-results/ +/playwright-report/ +/playwright/.cache/ +/blob-report/ + + +.idea +.stars-cache + +# pm +.yarn +yarn-error.log +yarn.lock +pnpm-lock.yaml + +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +# Editor directories and files +!.vscode/extensions.json +.vscode/* +.editorconfig +.idea +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? + +*.flock +*.tmp + +# php +public/api/vendor