90 lines
1.4 KiB
Plaintext
90 lines
1.4 KiB
Plaintext
# === FICHIERS SENSIBLES ===
|
|
# Variables d'environnement
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# Clés de service et credentials
|
|
*.json
|
|
!package*.json
|
|
!lib/package.json
|
|
# Si tu as d'autres fichiers JSON légitimes à garder, les ajouter avec !filename.json
|
|
|
|
# === LOGS ===
|
|
# Tous les fichiers de log
|
|
logs/
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
lerna-debug.log*
|
|
|
|
# === NODE.JS ===
|
|
# Dependencies
|
|
node_modules/
|
|
jspm_packages/
|
|
|
|
# Optional npm cache directory
|
|
.npm
|
|
|
|
# Optional eslint cache
|
|
.eslintcache
|
|
|
|
# Optional REPL history
|
|
.node_repl_history
|
|
|
|
# Output of 'npm pack'
|
|
*.tgz
|
|
|
|
# Yarn Integrity file
|
|
.yarn-integrity
|
|
|
|
# === FICHIERS TEMPORAIRES/DEBUG ===
|
|
# Tes fichiers de test temporaires
|
|
test_*.js
|
|
*_test.js
|
|
*_debug.js
|
|
test-*.js
|
|
|
|
# HTML généré (logs viewer)
|
|
logs-viewer.html
|
|
|
|
# === DOSSIERS DE DONNÉES ===
|
|
# Si config/ et data/ contiennent des données sensibles
|
|
config/
|
|
data/
|
|
|
|
# === OUTILS DE DÉVELOPPEMENT ===
|
|
# IDE et éditeurs
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# === CLAUDE ===
|
|
# Configuration locale Claude (garde les settings globaux si besoin)
|
|
.claude/settings.local.json
|
|
|
|
# === OPTIONNEL ===
|
|
# Décommente si tu veux ignorer package-lock.json (débat d'équipe)
|
|
# package-lock.json
|
|
|
|
# Coverage directory used by tools like istanbul
|
|
coverage/
|
|
*.lcov
|
|
|
|
# Temporary folders
|
|
tmp/
|
|
temp/ |