From 3e6c9963af6d7defb8abc420ae278a0ba23b5dfb Mon Sep 17 00:00:00 2001 From: Arne Rief Date: Fri, 27 Mar 2026 12:26:53 +0100 Subject: Cleanup gitignore & attributes --- .gitattributes | 1 + .gitignore | 40 ++++++++++++++++++++++++++++++++++++++++ backend/.gitattributes | 1 - backend/.gitignore | 2 -- frontend/.gitattributes | 1 - frontend/.gitignore | 9 --------- 6 files changed, 41 insertions(+), 13 deletions(-) create mode 100644 .gitattributes create mode 100644 .gitignore delete mode 100644 backend/.gitattributes delete mode 100644 backend/.gitignore delete mode 100644 frontend/.gitattributes delete mode 100644 frontend/.gitignore diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..6313b56 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +* text=auto eol=lf diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3b40a72 --- /dev/null +++ b/.gitignore @@ -0,0 +1,40 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +.DS_Store +dist +dist-ssr +coverage +.env +*.local + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? + +*.tsbuildinfo + +.eslintcache + +# Cypress +/cypress/videos/ +/cypress/screenshots/ + +# Vitest +__screenshots__/ + +# Vite +*.timestamp-*-*.mjs diff --git a/backend/.gitattributes b/backend/.gitattributes deleted file mode 100644 index 6313b56..0000000 --- a/backend/.gitattributes +++ /dev/null @@ -1 +0,0 @@ -* text=auto eol=lf diff --git a/backend/.gitignore b/backend/.gitignore deleted file mode 100644 index 1dcef2d..0000000 --- a/backend/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -node_modules -.env \ No newline at end of file diff --git a/frontend/.gitattributes b/frontend/.gitattributes deleted file mode 100644 index 6313b56..0000000 --- a/frontend/.gitattributes +++ /dev/null @@ -1 +0,0 @@ -* text=auto eol=lf diff --git a/frontend/.gitignore b/frontend/.gitignore deleted file mode 100644 index 0aa16e3..0000000 --- a/frontend/.gitignore +++ /dev/null @@ -1,9 +0,0 @@ -logs -*.log -npm-debug.log* - -node_modules -dist -dist-ssr -.env -*.local -- cgit v1.2.3