Skip to content

Commit aa4f86d

Browse files
fix
1 parent 3000ac4 commit aa4f86d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

crates/oxc_linter/src/rules/vue/require_typed_ref.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ declare_oxc_lint!(
2424
///
2525
/// ### Why is this bad?
2626
///
27-
/// With TypeScript it is easy to prevent usage of any by using noImplicitAny.
28-
/// Unfortunately this rule is easily bypassed with Vue ref() function.
29-
/// Calling ref() function without a generic parameter or an initial value leads to ref having Ref<any> type.
27+
/// With TypeScript it is easy to prevent usage of `any` by using `noImplicitAny`.
28+
/// Unfortunately this rule is easily bypassed with Vue `ref()` function.
29+
/// Calling `ref()` function without a generic parameter or an initial value leads to ref having `Ref<any>` type.
3030
///
3131
/// ### Examples
3232
///

0 commit comments

Comments
 (0)