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
+5-1
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ We're thrilled to introduce agentic planning on GitHub for CodeRabbit chat as Ge
46
46
47
47
We've expanded our static analysis capabilities with two new tools:
48
48
49
-
-**OXC**: A high-performance JavaScript/TypeScript linter written in Rust.
49
+
-**oxlint**: A high-performance JavaScript/TypeScript linter written in Rust.
50
50
-**Prisma Lint**: A dedicated linter for Prisma schema files to help enforce consistent conventions and best practices.
51
51
52
52
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/) for more details.
@@ -104,6 +104,10 @@ We're thrilled to introduce agentic planning on GitHub for CodeRabbit chat as an
104
104
We are continually expanding our support for static analysis tools. We've recently added support for:
105
105
106
106
- SQLFluff
107
+
- Added oxlint for faster linting
108
+
- oxlint is a blazingly fast JavaScript/TypeScript linter written in Rust
109
+
- Replaces ESLint for basic linting while maintaining ESLint for more complex rules
import ProPlanNotice from '@site/src/components/ProPlanNotice.mdx';
9
+
10
+
<ProPlanNotice />
11
+
```
12
+
13
+
[oxlint](https://github.com/oxc-project/oxc) is a blazingly fast JavaScript/TypeScript linter written in Rust that is 50-100x faster than ESLint.
14
+
15
+
## Files
16
+
17
+
oxlint will run on files with the following extensions:
18
+
19
+
-`.js`
20
+
-`.jsx`
21
+
-`.ts`
22
+
-`.tsx`
23
+
24
+
## Configuration
25
+
26
+
oxlint supports the following config files:
27
+
28
+
-`oxlint.json`
29
+
-`.oxlintrc`
30
+
-`.oxlintrc.json`
31
+
-`oxlint.config.json`
32
+
33
+
:::note
34
+
35
+
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.
36
+
37
+
:::
38
+
39
+
## Rule Configuration
40
+
41
+
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](https://oxc-project.github.io) for more details on available rules and configuration options.
0 commit comments