- 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>
23 lines
288 B
Plaintext
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 |