Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions crates/oxc_linter/src/rules/eslint/no_unused_vars/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,11 @@ declare_oxc_lint!(
/// functions, etc.
///
/// #### Ignored Files
/// This rule ignores `.d.ts` files and `.vue` files entirely. Variables,
/// This rule ignores `.d.ts`, `.astro`, `.svelte` and `.vue` files entirely. Variables,
/// classes, interfaces, and types declared in `.d.ts` files are generally
/// used by other files, which are not checked by Oxlint. Since Oxlint does
/// not support parsing Vue templates, this rule cannot tell if a variable
/// is used or unused in a Vue file.
/// not support parsing template syntax, this rule cannot tell if a variable
/// is used or unused in a Vue / Svelte / Astro file.
///
/// #### Exported
///
Expand Down
6 changes: 3 additions & 3 deletions tasks/website_linter/src/rules/snapshots/docs_rule_pages.snap
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,11 @@ Enums and namespaces are treated the same as variables, classes,
functions, etc.

#### Ignored Files
This rule ignores `.d.ts` files and `.vue` files entirely. Variables,
This rule ignores `.d.ts`, `.astro`, `.svelte` and `.vue` files entirely. Variables,
classes, interfaces, and types declared in `.d.ts` files are generally
used by other files, which are not checked by Oxlint. Since Oxlint does
not support parsing Vue templates, this rule cannot tell if a variable
is used or unused in a Vue file.
not support parsing template syntax, this rule cannot tell if a variable
is used or unused in a Vue / Svelte / Astro file.

#### Exported

Expand Down
Loading