# Git
.git
.github
.gitignore
.gitattributes

# IDE and editors
.vscode
.idea
*.swp
*.swo
*~
.DS_Store

# Python
__pycache__
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
.pytest_cache/
.coverage
.coverage.*
htmlcov/
.tox/
.nox/
.hypothesis/
.pytype/
.mypy_cache/
.dmypy.json
dmypy.json
.pyre/
.venv
venv/
ENV/
env/

# Node.js
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*
.next/
out/
*.tsbuildinfo
.npm
.eslintcache

# Environment files
.env
.env.*
!.env.example

# Documentation
*.md
!README.md
docs/
*_ANALYSIS_REPORT.md
*_COMPLETE.md
*_FIXES_COMPLETE.md

# Tests
tests/
*_test.py
test_*.py
*.test.js
*.test.ts
*.spec.js
*.spec.ts

# Temporary files
*.log
*.tmp
*.temp
*.bak
*.swp

# OS files
.DS_Store
Thumbs.db
desktop.ini

# CI/CD
.github/

# Development tools
Makefile
.editorconfig
.pre-commit-config.yaml

# Database
*.db
*.sqlite
*.sqlite3

# Benchmarks and data
benchmarks/
data/
*.json
!package.json
!package-lock.json
!tsconfig.json

# Analysis reports
*_ANALYSIS_REPORT.md
*_COMPLETE.md
