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: apps/docs/content/docs/guides/tools/oxc.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -101,9 +101,9 @@ Register the scripts to Turborepo as [Root Tasks](/docs/crafting-your-repository
101
101
You can now run `turbo run lint` to lint your entire repository.
102
102
103
103
<Callouttype="warn"title="Type-aware linting">
104
-
If you enable [type-aware linting rules](https://oxc.rs/docs/guide/usage/linter/config#type-aware-linting) in oxlint, the linter needs TypeScript type information to work correctly. This means any dependencies that must be built before type-checking (such as internal packages in your monorepo) also need to be built before linting.
104
+
If you enable [type-aware linting rules](https://oxc.rs/docs/guide/usage/linter/config#type-aware-linting) in oxlint, the linter needs TypeScript type information to work correctly. This means any dependencies that must be built before type-checking (such as [Compiled Packages](/docs/core-concepts/internal-packages#compiled-packages) in your monorepo) also need to be built before linting.
105
105
106
-
Run your builds before linting in CI:
106
+
For example, to build Compiled Packages before running formatting and linting:
107
107
108
108
```bash title="Terminal"
109
109
turbo run build --filter=./packages/*&& turbo run lint
0 commit comments