Files
ChatApp/.gitignore
T
byGalax 74074115d2 chore: ignore .claude/ local settings dir
Claude Code writes per-project permission settings here; harmless to
track but noisy across sessions. Gitignoring keeps the release
pre-flight check happy.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-22 23:04:19 +02:00

72 lines
823 B
Plaintext

# Dependencies
node_modules/
.pnpm-store/
# Build output
dist/
build/
out/
*.tsbuildinfo
# Turbo
.turbo/
# Env
.env
.env.local
.env.*.local
.env.release
!.env.example
!.env.release.example
# Expo
.expo/
.expo-shared/
web-build/
*.jks
*.p8
*.p12
*.key
*.mobileprovision
# Tauri updater signing key (private — NEVER commit)
.tauri-updater.key
# .tauri-updater.key.pub is public, may be committed
# Tauri
apps/desktop/src-tauri/target/
apps/desktop/src-tauri/gen/
apps/desktop/src-tauri/WixTools/
# Logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
# OS
.DS_Store
Thumbs.db
# IDE
.idea/
.vscode/*
!.vscode/settings.json
!.vscode/extensions.json
*.swp
*.swo
# Claude Code per-project local settings
.claude/
# Coverage
coverage/
*.lcov
.nyc_output/
# Misc
.cache/
*.local