Skip to content

Commit 6d32734

Browse files
JoshuaKGoldbergbradzacher
authored andcommitted
fix(eslint-plugin): [explicit-module-boundary-types] remove shouldTrackReferences option from schema (#5399)
1 parent df54175 commit 6d32734

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

packages/eslint-plugin/src/rules/explicit-module-boundary-types.ts

-5
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ type Options = [
2222
allowedNames?: string[];
2323
allowHigherOrderFunctions?: boolean;
2424
allowTypedFunctionExpressions?: boolean;
25-
shouldTrackReferences?: boolean;
2625
},
2726
];
2827
type MessageIds =
@@ -85,10 +84,6 @@ export default util.createRule<Options, MessageIds>({
8584
'Whether to ignore type annotations on the variable of a function expresion.',
8685
type: 'boolean',
8786
},
88-
// DEPRECATED - To be removed in next major
89-
shouldTrackReferences: {
90-
type: 'boolean',
91-
},
9287
},
9388
additionalProperties: false,
9489
},

0 commit comments

Comments
 (0)