Skip to content

Commit c9eb4d9

Browse files
crisbetoandrewseguin
authored andcommitted
build: fix lint failures (#21692)
Fixes a few lint failures that got through, because the related PRs were opened before the check was introduced. (cherry picked from commit 0091015)
1 parent 9c99070 commit c9eb4d9

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

scripts/check-mdc-exports-config.ts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ export const config = {
1818
'_MatAutocompleteTriggerBase',
1919
'_MatAutocompleteOriginBase'
2020
],
21+
'mdc-autocomplete/testing': [
22+
// Private base classes that are only exported for MDC.
23+
'_MatAutocompleteHarnessBase'
24+
],
2125
'mdc-core': [
2226
// Private base classes that are only exported for MDC.
2327
'_MatOptionBase',
@@ -33,6 +37,11 @@ export const config = {
3337
// Private base class that is only exported for MDC.
3438
'_MatMenuBase'
3539
],
40+
'mdc-menu/testing': [
41+
// Private base class that is only exported for MDC.
42+
'_MatMenuHarnessBase',
43+
'_MatMenuItemHarnessBase'
44+
],
3645
'mdc-paginator': [
3746
// Private base class that is only exported for MDC.
3847
'_MatPaginatorBase'
@@ -51,6 +60,10 @@ export const config = {
5160
// Private base class that is only exported for MDC.
5261
'_MatSelectBase'
5362
],
63+
'mdc-select/testing': [
64+
// Private base class that is only exported for MDC.
65+
'_MatSelectHarnessBase'
66+
],
5467
'mdc-slide-toggle': [
5568
// Private module used to provide some common functionality.
5669
'_MatSlideToggleRequiredValidatorModule'

0 commit comments

Comments
 (0)