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
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -66,7 +66,7 @@ We're thrilled to introduce agentic planning on GitHub for CodeRabbit chat as Ge
66
66
67
67
We've expanded our static analysis capabilities with two new tools:
68
68
69
-
-**oxlint**: A high-performance JavaScript/TypeScript linter written in Rust.
69
+
-**Oxlint**: A high-performance JavaScript/TypeScript linter written in Rust.
70
70
-**Prisma Lint**: A dedicated linter for Prisma schema files to help enforce consistent conventions and best practices.
71
71
72
72
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.
@@ -124,8 +124,8 @@ We're thrilled to introduce agentic planning on GitHub for CodeRabbit chat as an
124
124
We are continually expanding our support for static analysis tools. We've recently added support for:
125
125
126
126
- SQLFluff
127
-
- Addedoxlint for faster linting
128
-
-oxlint is a blazingly fast JavaScript/TypeScript linter written in Rust
127
+
- AddedOxlint for faster linting
128
+
-Oxlint is a blazingly fast JavaScript/TypeScript linter written in Rust
129
129
- Replaces ESLint for basic linting while maintaining ESLint for more complex rules
@@ -10,37 +10,41 @@ import ProPlanNotice from '@site/src/components/ProPlanNotice.mdx';
10
10
<ProPlanNotice />
11
11
```
12
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.
13
+
[Oxlint](https://oxc.rs/docs/guide/usage/linter) is a blazingly fast JavaScript/TypeScript linter written in Rust that is 50-100x faster than ESLint.
14
14
15
-
##Files
15
+
##SupportedFiles
16
16
17
-
oxlint will run on files with the following extensions:
17
+
Oxlint will run on files with the following extensions:
18
18
19
19
-`.js`
20
+
-`.mjs`
21
+
-`.cjs`
20
22
-`.jsx`
21
23
-`.ts`
24
+
-`.mts`
25
+
-`.cts`
22
26
-`.tsx`
27
+
-`.vue`
28
+
-`.astro`
29
+
-`.svelte`
23
30
24
31
##Configuration
25
32
26
-
oxlint supports the followingconfig files:
33
+
Oxlint supports the followingconfiguration file:
27
34
28
-
-`oxlint.json`
29
-
-`.oxlintrc`
30
35
-`.oxlintrc.json`
31
-
-`oxlint.config.json`
32
36
33
37
:::note
34
38
35
-
oxlint does not require configuration to run.If nooxlint config file is found and Biome is enabled, CodeRabbit will use Biome instead asoxlint functionality is included within Biome. If Biome is not enabled or an oxlint config file is found, CodeRabbit will use the default oxlint config.
39
+
If noOxlint config file is found and Biome is enabled, CodeRabbit will use Biome instead asOxlint functionality is included within Biome.
36
40
37
-
:::
41
+
If Biome is not enabled or an Oxlint config file is found, CodeRabbit will use the`.oxlintrc.json` Oxlint config to run.
38
42
39
-
##Rule Configuration
43
+
Oxlint does not require configuration to run if Biome is disabled and Oxlint is enabled.
40
44
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.