Skip to content

Commit 8570e6c

Browse files
committed
chore: rename
1 parent f824823 commit 8570e6c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/rules/syntaxes/slot-attribute.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ module.exports = {
1616
/** @type {{ ignore: string[] }} */
1717
const options = context.options[0] || {}
1818
const { ignore = [] } = options
19-
const ignoreGroupMatcher = regexp.toRegExpGroupMatcher(ignore)
19+
const isAnyIgnored = regexp.toRegExpGroupMatcher(ignore)
2020

2121
const sourceCode = context.getSourceCode()
2222
const tokenStore =
@@ -126,7 +126,7 @@ module.exports = {
126126
const componentName = slotAttr.parent.parent.rawName
127127

128128
if (
129-
ignoreGroupMatcher(
129+
isAnyIgnored(
130130
componentName,
131131
casing.pascalCase(componentName),
132132
casing.kebabCase(componentName)

0 commit comments

Comments
 (0)