From f8a411cc4dedac461cef588740ea3bedfe30f860 Mon Sep 17 00:00:00 2001 From: Rohan Saini Date: Wed, 13 May 2026 19:48:19 +0530 Subject: [PATCH] chore: add root-level .gitignore (#22) --- .gitignore | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b2c889d --- /dev/null +++ b/.gitignore @@ -0,0 +1,42 @@ +# Dependencies +node_modules/ +jspm_packages/ +package-lock.json +yarn.lock + +# Build outputs +dist/ +build/ +coverage/ +*.apk +*.ipa + +# React Native / Mobile +android/app/build/ +ios/Pods/ +.expo/ + +# Environment / Secrets +.env +.env.local +.env.development.local +.env.test.local +.env.production.local +*.pem + +# IDE / Editor +.vscode/ +.idea/ +*.swp +*.swo +.project +.settings/ +.classpath + +# OS / Misc +.DS_Store +Thumbs.db +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log*