# =====================================================================
# apiz Monorepo SDK — Aggressive ignore policy
# This file MUST be committed BEFORE any source / test / config files.
# Anything matching here is NEVER allowed in commits.
# =====================================================================

# ---------- Secrets & credentials (HIGHEST PRIORITY) -----------------
# Never commit real API keys or credentials in any form.
.env
.env.*
!.env.example
.env.local
.env.*.local
*.local.env
test.env
secrets.env
*.tokens
*.token
auth.json
credentials.json
config.toml
!**/example.config.toml

# ---------- Local config & profiles ----------------------------------
.apiz/
.apizrc
~/.apiz/

# ---------- Node.js / pnpm / TS --------------------------------------
node_modules/
.pnpm-store/
.pnpm-debug.log*
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.npm
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
*.tsbuildinfo

# ---------- Python ---------------------------------------------------
__pycache__/
*.py[cod]
*$py.class
*.egg
*.egg-info/
.eggs/
*.whl
.python-version
.venv/
venv/
ENV/
.tox/
.nox/
.mypy_cache/
.ruff_cache/

# ---------- Go -------------------------------------------------------
vendor/
bin/
*.exe
*.exe~
*.dll
*.so
*.dylib
*.test
*.out
coverage.out
coverage.html
profile.cov
__debug_bin*

# ---------- Build outputs --------------------------------------------
dist/
build/
out/
lib/
*.tar.gz
*.zip

# ---------- Test artifacts -------------------------------------------
coverage/
.coverage
.coverage.*
htmlcov/
.pytest_cache/
.vitest-cache/
.playwright/
test-results/
playwright-report/
**/__snapshots__/__diff_output__/

# ---------- IDE & OS -------------------------------------------------
.idea/
.vscode/
*.swp
*.swo
*~
.history/
.DS_Store
Thumbs.db

# ---------- goreleaser / cargo-dist ----------------------------------
.goreleaser-tmp/
dist-cli/
