65 lines
607 B
Plaintext
65 lines
607 B
Plaintext
# Git files
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
.github/
|
|
|
|
# Node.js
|
|
node_modules
|
|
npm-debug.log
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
env/
|
|
venv/
|
|
.env
|
|
.venv
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# Media and temporary files
|
|
*.mp4
|
|
*.part
|
|
*.info.json
|
|
*.webm
|
|
*.m4a
|
|
*.mp3
|
|
|
|
# Specific files to exclude
|
|
generate_tokens_parallel.mjs
|
|
generate_tokens_playwright.mjs
|
|
|
|
# OS specific files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# IDE files
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Build artifacts
|
|
target/
|