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:
23
.gitignore
vendored
Normal file
23
.gitignore
vendored
Normal 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
|
||||
Reference in New Issue
Block a user