From 6ca114215cee6c7bfebc955f09aecc678062fbe7 Mon Sep 17 00:00:00 2001 From: Network Monitor Bot Date: Tue, 19 Aug 2025 19:38:08 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20Update=20.gitignore=20with=20com?= =?UTF-8?q?prehensive=20exclusions?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 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 --- .gitignore | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 56 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index b35794c..3431528 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,60 @@ +# Dossier d'exemple (ne pas committer) .divers + +# Dépendances node_modules/ +package-lock.json + +# Build dist/ +*.tsbuildinfo + +# Logs *.log -.env \ No newline at end of file +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 \ No newline at end of file