Ignore Files
Configure which files and patterns to exclude from scanning.
Create .pinelightignore
Create a .pinelightignore file in your repository root:
# Ignore test fixtures
test/fixtures/**
# Ignore generated files
dist/**
build/**
# Ignore vendor code
node_modules/**
# Ignore specific files
secrets.example.ts
.env.example
# Ignore by extension
*.min.js
*.bundle.jsPattern Syntax
**: Matches any number of directories*: Matches any single directory/file.gitignorepatterns are supported
Global Ignore
Configure global ignore patterns in your organization settings for all repositories.
Per-Repository Ignore
You can also add ignore patterns via the Dashboard.