We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f79a2d8 commit 6e90de3Copy full SHA for 6e90de3
packages/case-police/src/utils.ts
@@ -30,7 +30,7 @@ export function replaceCore(
30
) {
31
regex = regex || buildRegex(dict)
32
Array.from(code.matchAll(IGNORE_REGEX)).forEach((match) => {
33
- const [, key] = match
+ const key = match[1].trim().replace(/\s*-->$/, '') // remove comment end
34
ignore.push(...key.split(',').map(k => k.trim().toLowerCase()).filter(Boolean))
35
})
36
0 commit comments