91% of developers use AI tools. Your repo is accumulating technical debt RIGHT NOW.

Configuration

Ignore Patterns

Tell SlopBuster which files and directories to skip during reviews using glob patterns.

Configuration File

Add an ignore section to your .slopbuster.yaml:

.slopbuster.yaml
ignore:
  - "*.test.ts"          # Test files
  - "*.spec.ts"          # Spec files
  - "*.generated.ts"     # Generated code
  - "node_modules/**"    # Dependencies
  - "dist/**"            # Build output
  - "coverage/**"        # Coverage reports
  - ".next/**"           # Next.js build
  - "migrations/**"      # Database migrations
  - "vendor/**"          # Vendored code

Inline Commands

You can also add ignore patterns directly from a PR comment:

@slopbuster ignore file

Adds the current file to the ignore list

@slopbuster ignore pattern "*.migration.sql"

Adds a glob pattern to the ignore list

Pattern Syntax

SlopBuster uses standard glob patterns:

*Matches any file name
**Matches any directory depth
*.tsMatches all TypeScript files
src/**/*.test.tsMatches test files under src/