Skip to content

Latest commit

 

History

History
46 lines (30 loc) · 1.28 KB

oxlint.md

File metadata and controls

46 lines (30 loc) · 1.28 KB
title sidebar_label description
oxlint
oxlint
CodeRabbit's guide to oxlint.
import ProPlanNotice from '@site/src/components/ProPlanNotice.mdx';

<ProPlanNotice />

oxlint is a blazingly fast JavaScript/TypeScript linter written in Rust that is 50-100x faster than ESLint.

Files

oxlint will run on files with the following extensions:

  • .js
  • .jsx
  • .ts
  • .tsx

Configuration

oxlint supports the following config files:

  • oxlint.json
  • .oxlintrc
  • .oxlintrc.json
  • oxlint.config.json

:::note

oxlint does not require configuration to run. If no oxlint config file is found and Biome is enabled, CodeRabbit will use Biome instead as oxlint functionality is included within Biome. If Biome is not enabled or an oxlint config file is found, CodeRabbit will use the default oxlint config.

:::

Rule Configuration

While oxlint embraces convention over configuration, you can customize rules in your config file if needed. The config file should be in JSON format. See the oxlint documentation for more details on available rules and configuration options.

Links