📝 Update .gitignore with comprehensive exclusions
- Add all Node.js standard exclusions - Exclude user config directories (.neuraterm/) containing API keys - Add OS-specific files (Windows, macOS, Linux) - Add IDE files (.vscode, .idea, etc.) - Add build artifacts and cache files - Add environment files and secrets - Comprehensive coverage for a professional project
This commit is contained in:
parent
b8369b89e6
commit
6ca114215c
57
.gitignore
vendored
57
.gitignore
vendored
@ -1,5 +1,60 @@
|
|||||||
|
# Dossier d'exemple (ne pas committer)
|
||||||
.divers
|
.divers
|
||||||
|
|
||||||
|
# Dépendances
|
||||||
node_modules/
|
node_modules/
|
||||||
|
package-lock.json
|
||||||
|
|
||||||
|
# Build
|
||||||
dist/
|
dist/
|
||||||
|
*.tsbuildinfo
|
||||||
|
|
||||||
|
# Logs
|
||||||
*.log
|
*.log
|
||||||
.env
|
logs/
|
||||||
|
npm-debug.log*
|
||||||
|
yarn-debug.log*
|
||||||
|
yarn-error.log*
|
||||||
|
|
||||||
|
# Runtime et cache
|
||||||
|
.npm
|
||||||
|
.yarn-integrity
|
||||||
|
.cache/
|
||||||
|
|
||||||
|
# Variables d'environnement et secrets
|
||||||
|
.env
|
||||||
|
.env.local
|
||||||
|
.env.production
|
||||||
|
.env.test
|
||||||
|
|
||||||
|
# Configuration utilisateur (contient des clés API)
|
||||||
|
config/
|
||||||
|
.neuraterm/
|
||||||
|
|
||||||
|
# OS
|
||||||
|
.DS_Store
|
||||||
|
.DS_Store?
|
||||||
|
._*
|
||||||
|
.Spotlight-V100
|
||||||
|
.Trashes
|
||||||
|
ehthumbs.db
|
||||||
|
Thumbs.db
|
||||||
|
desktop.ini
|
||||||
|
|
||||||
|
# IDE
|
||||||
|
.vscode/
|
||||||
|
.idea/
|
||||||
|
*.swp
|
||||||
|
*.swo
|
||||||
|
*~
|
||||||
|
|
||||||
|
# Tests
|
||||||
|
coverage/
|
||||||
|
.nyc_output
|
||||||
|
junit.xml
|
||||||
|
|
||||||
|
# Temporaire
|
||||||
|
tmp/
|
||||||
|
temp/
|
||||||
|
*.tmp
|
||||||
|
*.temp
|
Loading…
x
Reference in New Issue
Block a user