# .docguardignore — paths to exclude from DocGuard validation.
# Gitignore-style syntax: one pattern per line, # for comments.
# Merged into config.ignore (in .docguard.json) at runtime.
#
# Common examples:
#   build/                   # exclude a directory
#   **/__generated__/**      # exclude anything in any __generated__ dir
#   vendor/legacy.ts         # exclude a single file
#   **/*.snap                # exclude all files matching a glob
#
# Build outputs, vendored libs, generated code are good candidates here.

# Vendored / generated code that's not yours to document
**/__generated__/**
**/generated/**
**/*.generated.*

# Migrations and lock files
**/migrations/**
**/*.lock
package-lock.json
yarn.lock
pnpm-lock.yaml
Cargo.lock
poetry.lock

# Common build artifacts (defaults also cover these, but listing here is clearer)
# dist/
# build/
# coverage/
