Replaced narrow .env.local / .env.*.local rules with .env.* to prevent accidental commit of .env.production, .env.development, .env.staging, etc. Explicitly allowlisted .env.example so it remains tracked. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
47 lines
465 B
Plaintext
47 lines
465 B
Plaintext
# General OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Editors/IDEs
|
|
.idea/
|
|
.vscode/
|
|
*.iml
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
*.log.*
|
|
*.pid
|
|
*.pid.lock
|
|
|
|
# Claude Code hooks audit log
|
|
.claude/hooks/audit.log
|
|
|
|
# Environment files
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Node / JavaScript
|
|
node_modules/
|
|
dist/
|
|
build/
|
|
coverage/
|
|
.nyc_output/
|
|
.eslintcache
|
|
|
|
# Next.js / frameworks
|
|
.next/
|
|
.vercel/
|
|
.turbo/
|
|
.cache/
|
|
.tmp/
|
|
|
|
# TypeScript
|
|
*.tsbuildinfo
|
|
|
|
# Package managers
|
|
yarn-error.log*
|
|
npm-debug.log*
|
|
pnpm-debug.log*
|