We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f824823 commit 8570e6cCopy full SHA for 8570e6c
lib/rules/syntaxes/slot-attribute.js
@@ -16,7 +16,7 @@ module.exports = {
16
/** @type {{ ignore: string[] }} */
17
const options = context.options[0] || {}
18
const { ignore = [] } = options
19
- const ignoreGroupMatcher = regexp.toRegExpGroupMatcher(ignore)
+ const isAnyIgnored = regexp.toRegExpGroupMatcher(ignore)
20
21
const sourceCode = context.getSourceCode()
22
const tokenStore =
@@ -126,7 +126,7 @@ module.exports = {
126
const componentName = slotAttr.parent.parent.rawName
127
128
if (
129
- ignoreGroupMatcher(
+ isAnyIgnored(
130
componentName,
131
casing.pascalCase(componentName),
132
casing.kebabCase(componentName)
0 commit comments