help wantednew rule
倉庫指標
- 星標
- (5,022 顆星)
- PR 合併指標
- (平均合併 1天 16小時) (30 天內合併 399 個 PR)
描述
Description
https://github.com/eslint/eslint/pull/15731#issuecomment-1082586113
Fail
Array.from({length: 10 + 1}).join('*')
Array.from({length: 10}).fill('*').join('')
Array.from({length: 10}, () => '*').join('')
Pass
'*'.repeat(10)
String(foo).repeat(10)