54 lines
736 B
Text
54 lines
736 B
Text
# Ghidra caches and temporary files
|
|
ghidra_*/**
|
|
*.bak
|
|
*.tmp
|
|
*.swp
|
|
*.lock
|
|
*.lock~
|
|
.tmp_*
|
|
|
|
# IDE and OS files
|
|
.vscode/
|
|
.idea/
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Local Python environments
|
|
.venv-pyghidra311/
|
|
|
|
# Python caches, bytecode, and tooling state
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
.python-version
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.pyre/
|
|
.hypothesis/
|
|
.tox/
|
|
.nox/
|
|
.coverage
|
|
.coverage.*
|
|
htmlcov/
|
|
build/
|
|
dist/
|
|
*.egg-info/
|
|
|
|
# Local scratch and probe files
|
|
.tmp_*.txt
|
|
.tmp_*.py
|
|
USECODE/EUSECODE_extracted/chunks/**
|
|
tools/pyghidra_crusader/__pycache__/**
|
|
bin/**
|
|
USECODE/REGRET/REGRET_USECODE_extracted/chunks/**
|
|
exports/**
|
|
out/**
|
|
binary/**
|
|
psx-map-exporter/.output-render/**
|
|
|
|
# JavaScript / Node
|
|
**/node_modules/**
|
|
**/dist/**
|
|
**/.vite/**
|
|
*.log
|