Files
ReachableCEO fe060c1627 chore: add git ignore configuration
- Configure .gitignore to exclude cloned repositories
- Ignore Package-Workspace/**/repo/ to avoid polluting project repo
- Exclude common build artifacts (node_modules, target, build, dist)
- Ignore IDE files (.vscode, .idea)
- Exclude OS files (.DS_Store, Thumbs.db)
- Ignore logs and temporary files

💘 Generated with Crush

Assisted-by: GLM-4.7 via Crush <crush@charm.land>
2026-02-04 07:59:32 -05:00

23 lines
288 B
Plaintext

# Ignore all cloned repositories
Package-Workspace/**/repo/
# Ignore common build artifacts
**/node_modules/
**/target/
**/build/
**/dist/
**/.git/
**/vendor/
# Ignore IDE files
**/.vscode/
**/.idea/
**/*.swp
**/*.swo
# Ignore OS files
**/.DS_Store
**/Thumbs.db
# Ignore logs
**/*.log