We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3000ac4 commit aa4f86dCopy full SHA for aa4f86d
crates/oxc_linter/src/rules/vue/require_typed_ref.rs
@@ -24,9 +24,9 @@ declare_oxc_lint!(
24
///
25
/// ### Why is this bad?
26
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.
+ /// With TypeScript it is easy to prevent usage of `any` by using `noImplicitAny`.
+ /// Unfortunately this rule is easily bypassed with Vue `ref()` function.
+ /// Calling `ref()` function without a generic parameter or an initial value leads to ref having `Ref<any>` type.
30
31
/// ### Examples
32
0 commit comments