checks - Replace npm commands with bun/bunx in scripts, docs, and CI - Add enhanced pre-commit checks with parallel execution - Document pre-commit hook behavior in PRE_COMMIT_HOOKS.md - Update .gitignore/.dockerignore for bun-debug.log - Refine ESLint config for bun and Prettier integration - Add scripts/type-check-staged.sh for fast staged type checks - Improve developer workflow and code quality automation
80 lines
864 B
Plaintext
80 lines
864 B
Plaintext
# Dependencies
|
|
node_modules
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
bun-debug.log*
|
|
|
|
# Build output
|
|
dist
|
|
build
|
|
|
|
# Environment files (security)
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Development files
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Version control
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# Documentation
|
|
README.md
|
|
README_*.md
|
|
CHANGELOG.md
|
|
CONTRIBUTING.md
|
|
LICENSE
|
|
docs/
|
|
|
|
# Docker files (avoid recursion)
|
|
Dockerfile
|
|
docker-compose.yaml
|
|
.dockerignore
|
|
|
|
# Scripts and testing (not needed in container)
|
|
scripts/
|
|
tests/
|
|
coverage/
|
|
**/__tests__
|
|
**/*.test.*
|
|
**/*.spec.*
|
|
|
|
# Logs
|
|
logs
|
|
*.log
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
.tmp
|
|
|
|
# CouchDB data
|
|
couchdb-data/
|
|
|
|
# Scripts (not needed in container)
|
|
setup.sh
|
|
deploy.sh
|
|
deploy-k8s.sh
|
|
validate-env.sh
|
|
validate-deployment.sh
|
|
|
|
# Kubernetes manifests
|
|
k8s/
|