From d4cd8b789b766e496563770bb779c98b9b24786e Mon Sep 17 00:00:00 2001 From: n0mad1k Date: Wed, 9 Jul 2025 16:16:43 -0400 Subject: [PATCH] added robust gitignore --- .gitignore | 101 ++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 100 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 2d9a05e..9fdca0f 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,103 @@ deployment* config.yml logs/ domainhunter/ -infrastructure_state_*.json \ No newline at end of file +infrastructure_state_*.json +# OS-specific files +.DS_Store +Thumbs.db +desktop.ini + +# VS Code settings +.vscode/ +.history/ + +# Node.js +node_modules/ +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +package-lock.json +yarn.lock + +# Python +__pycache__/ +*.py[cod] +*.pyo +*.pyd +*.egg +*.egg-info/ +dist/ +build/ +.env +.venv/ +venv/ +Pipfile.lock + +# C# / .NET +bin/ +obj/ +*.user +*.suo +*.userosscache +*.sln.docstates +*.vsp +*.pidb +*.mdb +*.cache +*.pdb + +# Java +*.class +*.jar +*.war +*.ear +target/ + +# Logs and temp files +*.log +*.tmp +*.bak +*.swp +*.swo +*.swn +*.orig +*.rej + +# Secrets +.env.local +.env.*.local +.envrc +secrets.* +credentials.json + +# GitHub Copilot +*.copilot* + +# Test output +coverage/ +.nyc_output/ +test-output/ + +# IDEs and editors +.idea/ +*.iml +*.code-workspace + +# Others +*.sqlite3 +*.db +*.tar.gz +*.zip +*.7z +*.tgz + +# Ignore by file type (optional) +*.exe +*.dll +*.msi +*.apk +*.ipa + +# Ignore personal scripts +scripts/dev/*