mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 20:32:10 +00:00
chore(linter): Fix spelling mistake (#450)
Co-authored-by: Boshen <boshenc@gmail.com>
This commit is contained in:
parent
de9d4de276
commit
c5a6b55bcd
2 changed files with 19 additions and 19 deletions
|
|
@ -244,7 +244,7 @@ const TARGET_METHODS: phf::Set<&'static str> = phf_set! {
|
|||
|
||||
fn full_array_method_name(array_method: &'static str) -> Atom {
|
||||
match array_method {
|
||||
"from" => Atom::from("Array.form"),
|
||||
"from" => Atom::from("Array.from"),
|
||||
s => Atom::from(format!("Array.prototype.{s}")),
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2,19 +2,19 @@
|
|||
source: crates/oxc_linter/src/tester.rs
|
||||
expression: array_callback_return
|
||||
---
|
||||
⚠ eslint(array-callback-return): Missing return on some path for array method "Array.form"
|
||||
⚠ eslint(array-callback-return): Missing return on some path for array method "Array.from"
|
||||
╭─[array_callback_return.tsx:1:1]
|
||||
1 │ Array.from(x, function() {})
|
||||
· ──
|
||||
╰────
|
||||
help: Array method "Array.form" needs to have valid return on all code paths
|
||||
help: Array method "Array.from" needs to have valid return on all code paths
|
||||
|
||||
⚠ eslint(array-callback-return): Missing return on some path for array method "Array.form"
|
||||
⚠ eslint(array-callback-return): Missing return on some path for array method "Array.from"
|
||||
╭─[array_callback_return.tsx:1:1]
|
||||
1 │ Array.from(x, function foo() {})
|
||||
· ──
|
||||
╰────
|
||||
help: Array method "Array.form" needs to have valid return on all code paths
|
||||
help: Array method "Array.from" needs to have valid return on all code paths
|
||||
|
||||
⚠ eslint(array-callback-return): Missing return on some path for array method "Array.prototype.every"
|
||||
╭─[array_callback_return.tsx:1:1]
|
||||
|
|
@ -401,12 +401,12 @@ expression: array_callback_return
|
|||
╰────
|
||||
help: Array method "Array.prototype.every" needs to have valid return on all code paths
|
||||
|
||||
⚠ eslint(array-callback-return): Missing return on some path for array method "Array.form"
|
||||
⚠ eslint(array-callback-return): Missing return on some path for array method "Array.from"
|
||||
╭─[array_callback_return.tsx:1:1]
|
||||
1 │ Array.from(x, function() {})
|
||||
· ──
|
||||
╰────
|
||||
help: Array method "Array.form" needs to have valid return on all code paths
|
||||
help: Array method "Array.from" needs to have valid return on all code paths
|
||||
|
||||
⚠ eslint(array-callback-return): Missing return on some path for array method "Array.prototype.every"
|
||||
╭─[array_callback_return.tsx:1:1]
|
||||
|
|
@ -583,12 +583,12 @@ expression: array_callback_return
|
|||
╰────
|
||||
help: Array method Array.prototype.forEach expects no useless return from the function
|
||||
|
||||
⚠ eslint(array-callback-return): Missing return on some path for array method "Array.form"
|
||||
⚠ eslint(array-callback-return): Missing return on some path for array method "Array.from"
|
||||
╭─[array_callback_return.tsx:1:1]
|
||||
1 │ Array.from(x, function() {})
|
||||
· ──
|
||||
╰────
|
||||
help: Array method "Array.form" needs to have valid return on all code paths
|
||||
help: Array method "Array.from" needs to have valid return on all code paths
|
||||
|
||||
⚠ eslint(array-callback-return): Missing return on some path for array method "Array.prototype.every"
|
||||
╭─[array_callback_return.tsx:1:1]
|
||||
|
|
@ -647,12 +647,12 @@ expression: array_callback_return
|
|||
╰────
|
||||
help: Array method "Array.prototype.filter" needs to have valid return on all code paths
|
||||
|
||||
⚠ eslint(array-callback-return): Missing return on some path for array method "Array.form"
|
||||
⚠ eslint(array-callback-return): Missing return on some path for array method "Array.from"
|
||||
╭─[array_callback_return.tsx:1:1]
|
||||
1 │ Array.from(foo, bar => { bar })
|
||||
· ───────
|
||||
╰────
|
||||
help: Array method "Array.form" needs to have valid return on all code paths
|
||||
help: Array method "Array.from" needs to have valid return on all code paths
|
||||
|
||||
⚠ eslint(array-callback-return): Unexpected return for array method Array.prototype.forEach
|
||||
╭─[array_callback_return.tsx:1:1]
|
||||
|
|
@ -727,19 +727,19 @@ expression: array_callback_return
|
|||
╰────
|
||||
help: Array method "Array.prototype.filter" needs to have valid return on all code paths
|
||||
|
||||
⚠ eslint(array-callback-return): Missing return on some path for array method "Array.form"
|
||||
⚠ eslint(array-callback-return): Missing return on some path for array method "Array.from"
|
||||
╭─[array_callback_return.tsx:1:1]
|
||||
1 │ Array.from(foo, function bar(){})
|
||||
· ──
|
||||
╰────
|
||||
help: Array method "Array.form" needs to have valid return on all code paths
|
||||
help: Array method "Array.from" needs to have valid return on all code paths
|
||||
|
||||
⚠ eslint(array-callback-return): Missing return on some path for array method "Array.form"
|
||||
⚠ eslint(array-callback-return): Missing return on some path for array method "Array.from"
|
||||
╭─[array_callback_return.tsx:1:1]
|
||||
1 │ Array.from(foo, bar ? function (){} : baz)
|
||||
· ──
|
||||
╰────
|
||||
help: Array method "Array.form" needs to have valid return on all code paths
|
||||
help: Array method "Array.from" needs to have valid return on all code paths
|
||||
|
||||
⚠ eslint(array-callback-return): Missing return on some path for array method "Array.prototype.filter"
|
||||
╭─[array_callback_return.tsx:1:1]
|
||||
|
|
@ -771,19 +771,19 @@ expression: array_callback_return
|
|||
╰────
|
||||
help: Array method "Array.prototype.filter" needs to have valid return on all code paths
|
||||
|
||||
⚠ eslint(array-callback-return): Missing return on some path for array method "Array.form"
|
||||
⚠ eslint(array-callback-return): Missing return on some path for array method "Array.from"
|
||||
╭─[array_callback_return.tsx:1:1]
|
||||
1 │ Array?.from([], () => { console.log('hello') })
|
||||
· ────────────────────────
|
||||
╰────
|
||||
help: Array method "Array.form" needs to have valid return on all code paths
|
||||
help: Array method "Array.from" needs to have valid return on all code paths
|
||||
|
||||
⚠ eslint(array-callback-return): Missing return on some path for array method "Array.form"
|
||||
⚠ eslint(array-callback-return): Missing return on some path for array method "Array.from"
|
||||
╭─[array_callback_return.tsx:1:1]
|
||||
1 │ (Array?.from)([], () => { console.log('hello') })
|
||||
· ────────────────────────
|
||||
╰────
|
||||
help: Array method "Array.form" needs to have valid return on all code paths
|
||||
help: Array method "Array.from" needs to have valid return on all code paths
|
||||
|
||||
⚠ eslint(array-callback-return): Missing return on some path for array method "Array.prototype.filter"
|
||||
╭─[array_callback_return.tsx:1:1]
|
||||
|
|
|
|||
Loading…
Reference in a new issue