Skip to content
Dashboard

Settings

Configure how WarpFix reviews and repairs your code

Review Profile

Automation

Auto Review PRs
Automatically review every new PR
Auto Repair CI
Automatically fix CI failures

.warpfix.yaml

Add to your repo root to customize per-repo behavior

# .warpfix.yaml
review:
  profile: assertive
  auto_review: true
  path_instructions:
    - glob: "src/auth/**"
      instruction: "Check for security vulnerabilities"
    - glob: "**/*.test.js"
      instruction: "Verify test coverage"
  ignore_paths:
    - "dist/**"
    - "*.min.js"

repair:
  auto_fix: true
  min_confidence: 60
  skip_branches:
    - "release/*"

analysis:
  dead_code: true
  security_scan: true
  predictive_ci: true

quality_gates:
  - name: "No console.log in production"
    rule: "No console.log in src/ files"

chat:
  enabled: true