mirror of
https://github.com/th30d4y/BURP-AI.git
synced 2026-05-26 19:36:34 +00:00
51 lines
522 B
Plaintext
51 lines
522 B
Plaintext
# Ignore Python cache
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
|
|
# Ignore virtual environments
|
|
venv/
|
|
env/
|
|
ENV/
|
|
|
|
# Ignore IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Ignore configuration files with API keys
|
|
config.json
|
|
.env
|
|
.env.local
|
|
*.key
|
|
*.pem
|
|
|
|
# Ignore log files
|
|
*.log
|
|
burpaai.log
|
|
|
|
# Ignore Burp Suite cache
|
|
.BurpSuite/
|
|
|
|
# Ignore OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Ignore test outputs
|
|
report.html
|
|
test_results.json
|
|
burpaai_results.json
|
|
|
|
# Ignore temporary files
|
|
*.tmp
|
|
*.bak
|
|
*~
|
|
|
|
# Ignore package files
|
|
dist/
|
|
build/
|
|
*.egg-info/
|