You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/changelog.md
+11
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,17 @@ description: The latest updates and changes to CodeRabbit.
5
5
sidebar_position: 13
6
6
---
7
7
8
+
## April 8, 2025
9
+
10
+
### New Static Analysis Tools
11
+
12
+
We've expanded our static analysis capabilities with two new tools:
13
+
14
+
-**OXC**: A high-performance JavaScript/TypeScript linter written in Rust.
15
+
-**Prisma Lint**: A dedicated linter for Prisma schema files to help enforce consistent conventions and best practices.
16
+
17
+
Both tools can be configured through their respective config files or through CodeRabbit's settings page. See our [tools documentation](https://docs.coderabbit.ai/tools/tools) for more details.
description: CodeRabbit's guide to OXC (Oxidation Compiler).
5
+
---
6
+
7
+
```mdx-code-block
8
+
import ProPlanNotice from '@site/src/components/ProPlanNotice.mdx';
9
+
10
+
<ProPlanNotice />
11
+
```
12
+
13
+
[OXC](https://github.com/oxc-project/oxc) is a collection of high-performance JavaScript/TypeScript tools written in Rust, including a linter that is 50-100x faster than ESLint.
14
+
15
+
## Files
16
+
17
+
OXC will run on files with the following extensions:
18
+
19
+
-`.js`
20
+
-`.jsx`
21
+
-`.ts`
22
+
-`.tsx`
23
+
24
+
## Configuration
25
+
26
+
OXC supports the following config files:
27
+
28
+
-`oxlint.json`
29
+
-`.oxlintrc`
30
+
-`.oxlintrc.json`
31
+
-`oxlint.config.json`
32
+
33
+
:::note
34
+
35
+
OXC does not require configuration to run. If no OXC config file is found and Biome is enabled, CodeRabbit will use Biome instead as OXC functionality is included within Biome. If Biome is not enabled or an OXC config file is found, CodeRabbit will use the default OXC config.
36
+
37
+
:::
38
+
39
+
## Rule Configuration
40
+
41
+
While OXC embraces convention over configuration, you can customize rules in your config file if needed. The config file should be in JSON format. See the [OXC documentation](https://oxc-project.github.io) for more details on available rules and configuration options.
0 commit comments