CodeRabbit integrates with 40+ third-party linters and security analysis tools to enhance your code reviews. These tools run automatically in secure sandboxed environments, providing detailed feedback and 1-click fixes for common issues.
Pro plan required - This feature is available exclusively with CodeRabbit Pro. See our pricing page for plan details.

Tool categories

Configuration methods

Add tools to your repository’s .coderabbit.yaml file:
YAML
reviews:
  profile: assertive
  tools:
    eslint:
      enabled: true
    ruff:
      enabled: true
      config_file: "pyproject.toml"
    gitleaks:
      enabled: true

Tool profiles

CodeRabbit offers two review profiles that control tool strictness:
  • Chill: Focuses on critical issues and reduces noise from minor style violations
  • Assertive: Provides comprehensive feedback including style and best practice suggestions
Each tool respects your existing configuration files (like .eslintrc.js or pyproject.toml) for maximum customization.

Tool output and fixes

When tools detect issues, CodeRabbit displays structured output in the review comments:
ESLint
src/components/Button.tsx
12-12: 'React' must be in scope when using JSX

Add React import statement

(react/react-in-jsx-scope)
Many tools provide 1-click fixes that CodeRabbit can apply directly to your pull request, streamlining the review process.

Language support

Popular languages and their supported tools:
  • JavaScript/TypeScript: Biome, ESLint, oxlint
  • Python: Ruff, Pylint, Flake8
  • Go: golangci-lint
  • Rust: Clippy
  • Ruby: RuboCop, Brakeman
  • Swift: SwiftLint
  • PHP: PHPStan, PHPMD, PHPCS
For the complete list of 40+ supported tools, see supported tools.

What’s next