170 lines
2.3 KiB
Plaintext
170 lines
2.3 KiB
Plaintext
.aider*
|
|
|
|
# -------------------------
|
|
# macOS
|
|
# -------------------------
|
|
.DS_Store
|
|
.AppleDouble
|
|
.LSOverride
|
|
Icon
|
|
._*
|
|
|
|
# -------------------------
|
|
# Editor / IDE
|
|
# -------------------------
|
|
.vscode/
|
|
.idea/
|
|
*.sublime-workspace
|
|
*.sublime-project
|
|
|
|
# -------------------------
|
|
# Node / JavaScript
|
|
# -------------------------
|
|
# dependency directories
|
|
node_modules/
|
|
.pnp/
|
|
.pnp.js
|
|
|
|
# lockfiles (optional to ignore; keep if you want reproducible installs)
|
|
# package-lock.json
|
|
# yarn.lock
|
|
# pnpm-lock.yaml
|
|
|
|
# build outputs
|
|
dist/
|
|
build/
|
|
lib/
|
|
coverage/
|
|
.nyc_output/
|
|
|
|
# logs
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# environment
|
|
.env
|
|
.env.*.local
|
|
.env.local
|
|
.env.test
|
|
.env.production
|
|
|
|
# misc
|
|
*.tgz
|
|
.cache/
|
|
.next/
|
|
.nuxt/
|
|
out/
|
|
|
|
# -------------------------
|
|
# Python
|
|
# -------------------------
|
|
# Byte-compiled / optimized / DLL files
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# C extensions
|
|
*.so
|
|
|
|
# Virtual environments
|
|
.env/
|
|
.venv/
|
|
venv/
|
|
ENV/
|
|
env/
|
|
venv.bak/
|
|
|
|
# Distribution / packaging
|
|
build/
|
|
dist/
|
|
*.egg-info/
|
|
.eggs/
|
|
pip-wheel-metadata/
|
|
share/python-wheels/
|
|
|
|
# Test / coverage
|
|
htmlcov/
|
|
.tox/
|
|
.nox/
|
|
.coverage
|
|
.coverage.*
|
|
.cache
|
|
.pytest_cache/
|
|
|
|
# PyInstaller
|
|
*.manifest
|
|
*.spec
|
|
|
|
# Django / Flask / SQLite
|
|
*.log
|
|
local_settings.py
|
|
db.sqlite3
|
|
db.sqlite3-journal
|
|
instance/
|
|
.webassets-cache
|
|
|
|
# -------------------------
|
|
# Cloudflare Wrangler / Workers
|
|
# -------------------------
|
|
# Wrangler config files that may contain secrets or local overrides
|
|
.wrangler/
|
|
wrangler.toml
|
|
wrangler.json
|
|
wrangler.jsonc
|
|
wrangler.dev.*
|
|
# build artifacts for Workers
|
|
dist/
|
|
build/
|
|
# Cloudflare generated files
|
|
*.worker.js
|
|
*.worker.mjs
|
|
|
|
# -------------------------
|
|
# Secrets, keys, and credentials
|
|
# -------------------------
|
|
# Common secret files
|
|
*.pem
|
|
*.key
|
|
*.crt
|
|
secrets.*
|
|
credentials.*
|
|
*.env
|
|
.env.*
|
|
|
|
# -------------------------
|
|
# CI / tooling
|
|
# -------------------------
|
|
# GitHub Actions
|
|
.github/workflows/*.yml
|
|
|
|
# npm / pnpm / yarn caches
|
|
.npm/
|
|
.yarn/*
|
|
.pnpm-store/
|
|
|
|
# OS generated files
|
|
Thumbs.db
|
|
ehthumbs.db
|
|
|
|
# -------------------------
|
|
# Test files and outputs
|
|
# -------------------------
|
|
test-results/
|
|
debug-*.js
|
|
comprehensive-*.js
|
|
simple-*.js
|
|
final-*.js
|
|
browse-*.js
|
|
form-test.html
|
|
|
|
# -------------------------
|
|
# Optional: lockfiles and package manager files you may want to track
|
|
# -------------------------
|
|
# Uncomment to ignore if you prefer not to commit lockfiles
|
|
# package-lock.json
|
|
# yarn.lock
|
|
# pnpm-lock.yaml
|
|
|