Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: rename
  • Loading branch information
ST-DDT committed Jul 2, 2025
commit 8570e6c9ad0f95696f9f7d47813e1f608267075f
4 changes: 2 additions & 2 deletions lib/rules/syntaxes/slot-attribute.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ module.exports = {
/** @type {{ ignore: string[] }} */
const options = context.options[0] || {}
const { ignore = [] } = options
const ignoreGroupMatcher = regexp.toRegExpGroupMatcher(ignore)
const isAnyIgnored = regexp.toRegExpGroupMatcher(ignore)

const sourceCode = context.getSourceCode()
const tokenStore =
Expand Down Expand Up @@ -126,7 +126,7 @@ module.exports = {
const componentName = slotAttr.parent.parent.rawName

if (
ignoreGroupMatcher(
isAnyIgnored(
componentName,
casing.pascalCase(componentName),
casing.kebabCase(componentName)
Expand Down