From 46636e659f56186094eeffb79b4c3d4dc75d273b Mon Sep 17 00:00:00 2001 From: hailin Date: Tue, 27 Jan 2026 23:11:34 -0800 Subject: [PATCH] Add .gitignore file --- .gitignore | 98 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 98 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4bb55e0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,98 @@ +# Dependencies +node_modules/ +vendor/ +.pnpm-store/ + +# Build outputs +dist/ +build/ +out/ +target/ +*.egg-info/ + +# Environment files +.env +.env.local +.env.*.local +*.local.env + +# Logs +logs/ +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# OS generated files +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +ehthumbs.db +Thumbs.db +desktop.ini + +# IDE/Editor +.idea/ +.vscode/ +*.swp +*.swo +*.sublime-workspace +*.sublime-project +.project +.classpath +.settings/ +*.iml + +# Python +__pycache__/ +*.py[cod] +*$py.class +.Python +venv/ +.venv/ +ENV/ +env/ +.pytest_cache/ +.mypy_cache/ + +# Java/Kotlin +*.class +*.jar +*.war +*.ear + +# C/C++ +*.o +*.obj +*.exe +*.dll +*.so +*.dylib + +# Testing +coverage/ +.coverage +htmlcov/ +.nyc_output/ + +# Cache +.cache/ +*.cache +.parcel-cache/ +.next/ +.nuxt/ + +# Temp files +tmp/ +temp/ +*.tmp +*.temp +*.bak +*.backup + +# Package lock files (optional - uncomment if needed) +# package-lock.json +# yarn.lock +# pnpm-lock.yaml