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>
This commit is contained in:
2026-02-04 07:59:32 -05:00
parent 2dc31349b2
commit fe060c1627

23
.gitignore vendored Normal file
View File

@@ -0,0 +1,23 @@
# 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