sindresorhus/eslint-plugin-unicorn
`prefer-regexp-test` catch more cases
Closed
#2,071 opened on Apr 18, 2023
enhancementhelp wanted
Repository metrics
- Stars
- (5,022 stars)
- PR merge metrics
- (Avg merge 1d 16h) (399 merged PRs in 30d)
Description
the below cases currently not reported
if (
uri.match(/unicorn/).length ||
uri.match(/unicorn/).length > 0 ||
uri.match(/unicorn/)?.length ||
uri.match(/unicorn/)?.length > 0
) {
}