Skip to content

Commit 6e90de3

Browse files
committedNov 26, 2024
fix: ignore regex handling
1 parent f79a2d8 commit 6e90de3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎packages/case-police/src/utils.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export function replaceCore(
3030
) {
3131
regex = regex || buildRegex(dict)
3232
Array.from(code.matchAll(IGNORE_REGEX)).forEach((match) => {
33-
const [, key] = match
33+
const key = match[1].trim().replace(/\s*-->$/, '') // remove comment end
3434
ignore.push(...key.split(',').map(k => k.trim().toLowerCase()).filter(Boolean))
3535
})
3636

0 commit comments

Comments
 (0)
Please sign in to comment.