# BeaverScan Ignore File
# Patterns follow .gitignore syntax
# Lines starting with # are comments
# Use ! to negate a pattern

# Dependencies
node_modules/
vendor/
bower_components/

# Build outputs
dist/
build/
out/
.next/
.nuxt/
.turbo/
.vercel/
.webpack/
.parcel-cache/

# Test files
**/*.test.ts
**/*.test.js
**/*.spec.ts
**/*.spec.js
**/__tests__/
**/cypress/
**/playwright/
**/__fixtures__/
**/__mocks__/

# Coverage
coverage/
.nyc_output/

# Minified and bundled files
*.min.js
*.bundle.js
*.chunk.js

# Generated files
**/*.generated.ts
**/*.generated.js
**/*.d.ts

# Documentation
docs/
*.md

# Configuration examples
.env.example
config/development.ts
config/staging.ts

# Third-party code
**/vendor/
**/third-party/
public/libs/

# Legacy code (example of excluding a directory)
# legacy/

# But include specific important files (negation example)
# !legacy/authentication.ts
