From 44901f530a3d7c6ad06bf80edbe25c8345e3f155 Mon Sep 17 00:00:00 2001 From: Mars Developer Date: Thu, 26 Jun 2025 11:25:22 +0800 Subject: [PATCH] update .gitignore with comprehensive exclusions --- .gitignore | 91 ++++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 89 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 4a7f73a..b7875b7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,5 @@ # Nuxt dev/build outputs .output -.data .nuxt .nitro .cache @@ -10,7 +9,6 @@ dist node_modules # Logs -logs *.log # Misc @@ -22,3 +20,92 @@ logs .env .env.* !.env.example + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? + +# OS generated files +Thumbs.db +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +ehthumbs.db +Desktop.ini + +# Runtime data +pids +*.pid +*.seed +*.pid.lock + +# Coverage directory used by tools like istanbul +coverage/ + +# Dependency directories +jspm_packages/ + +# Optional npm cache directory +.npm + +# Optional eslint cache +.eslintcache + +# Microbundle cache +.rpt2_cache/ +.rts2_cache_cjs/ +.rts2_cache_es/ +.rts2_cache_umd/ + +# Optional REPL history +.node_repl_history + +# Output of 'npm pack' +*.tgz + +# Yarn Integrity file +.yarn-integrity + +# parcel-bundler cache (https://parceljs.org/) +.parcel-cache + +# Next.js build output +.next + +# Nuxt.js build / generate output +.nuxt +dist + +# Storybook build outputs +.out +.storybook-out + +# Temporary folders +tmp/ +temp/ + +# Editor backup files +*~ +*.swp +*.swo +*tmp + +# Database files +*.sqlite +*.db + +# Test coverage +coverage + +# Playwright +test-results/ +playwright-report/ +playwright/.cache/