Skip to content

Commit 9c03d56

Browse files
vwillyamsljharb
andauthored
Update lib/rules/no-multi-comp.js
Co-authored-by: Jordan Harband <[email protected]>
1 parent 27d8075 commit 9c03d56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/rules/no-multi-comp.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ module.exports = {
120120

121121
values(components.list())
122122
.filter((component) => !isIgnored(component))
123-
.filter((component) => !isPrivate(component))
123+
.filter((component) => !isIgnored(component) && !isPrivate(component))
124124
.slice(1)
125125
.forEach((component) => {
126126
report(context,

0 commit comments

Comments
 (0)