From a019db48f166be093fb18202999da166254e2370 Mon Sep 17 00:00:00 2001 From: Natxo <1172351+natxocc@users.noreply.github.com> Date: Fri, 13 Mar 2026 13:59:48 +0100 Subject: [PATCH] Add .gitignore file for project dependencies and settings --- .gitignore | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3b717cd --- /dev/null +++ b/.gitignore @@ -0,0 +1,42 @@ +# Dependencies +node_modules/ +jspm_packages/ + +# Build and Distribution +dist/ +lib-cov/ +coverage/ +*.lcov +.cache/ +.parcel-cache/ +.turbo/ + +# Logs +npm-debug.log* +yarn-debug.log* +yarn-error.log* +lerna-debug.log* + +# Environments (Sensitive Variables) +.env +.env.local +.env.development.local +.env.test.local +.env.production.local + +# Editors and System +.DS_Store +Thumbs.db +.vscode/ +!.vscode/extensions.json +.idea/ +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? + +# Tests and Tools +.nyc_output +.eslintcache +.stylelintcache