Skip to content

Commit

Permalink
fix(eslint-plugin): [explicit-module-boundary-types] remove shouldTra…
Browse files Browse the repository at this point in the history
…ckReferences option from schema (#5399)
  • Loading branch information
JoshuaKGoldberg authored and bradzacher committed Nov 23, 2022
1 parent df54175 commit 6d32734
Showing 1 changed file with 0 additions and 5 deletions.
Expand Up @@ -22,7 +22,6 @@ type Options = [
allowedNames?: string[];
allowHigherOrderFunctions?: boolean;
allowTypedFunctionExpressions?: boolean;
shouldTrackReferences?: boolean;
},
];
type MessageIds =
Expand Down Expand Up @@ -85,10 +84,6 @@ export default util.createRule<Options, MessageIds>({
'Whether to ignore type annotations on the variable of a function expresion.',
type: 'boolean',
},
// DEPRECATED - To be removed in next major
shouldTrackReferences: {
type: 'boolean',
},
},
additionalProperties: false,
},
Expand Down

0 comments on commit 6d32734

Please sign in to comment.