From c73bca835b543e5bca18f8de2a2beaf44978434e Mon Sep 17 00:00:00 2001 From: Josh Goldberg Date: Fri, 29 Jul 2022 15:15:58 -0400 Subject: [PATCH] fix(eslint-plugin): [explicit-module-boundary-types] remove shouldTrackReferences option from schema --- .../src/rules/explicit-module-boundary-types.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/packages/eslint-plugin/src/rules/explicit-module-boundary-types.ts b/packages/eslint-plugin/src/rules/explicit-module-boundary-types.ts index 3f9f50086ccf..d582d1e9994f 100644 --- a/packages/eslint-plugin/src/rules/explicit-module-boundary-types.ts +++ b/packages/eslint-plugin/src/rules/explicit-module-boundary-types.ts @@ -18,7 +18,6 @@ type Options = [ allowedNames?: string[]; allowHigherOrderFunctions?: boolean; allowTypedFunctionExpressions?: boolean; - shouldTrackReferences?: boolean; }, ]; type MessageIds = @@ -67,10 +66,6 @@ export default util.createRule({ allowTypedFunctionExpressions: { type: 'boolean', }, - // DEPRECATED - To be removed in next major - shouldTrackReferences: { - type: 'boolean', - }, }, additionalProperties: false, },