File tree Expand file tree Collapse file tree 1 file changed +0
-15
lines changed Expand file tree Collapse file tree 1 file changed +0
-15
lines changed Original file line number Diff line number Diff line change @@ -48,16 +48,6 @@ export type MessageIds = 'unbound' | 'unboundWithoutThisAnnotation';
48
48
49
49
const DEFAULT_MESSAGE = 'This rule requires `@typescript-eslint/eslint-plugin`' ;
50
50
51
- // todo: remove these along with the actual runtime properties below in new major
52
- declare module '@typescript-eslint/utils/ts-eslint' {
53
- interface RuleMetaDataDocs {
54
- /** @deprecated */
55
- requiresTypeChecking ?: boolean ;
56
- /** @deprecated */
57
- recommended ?: unknown ;
58
- }
59
- }
60
-
61
51
export default createRule < Options , MessageIds > ( {
62
52
defaultOptions : [ { ignoreStatic : false } ] ,
63
53
...baseRule ,
@@ -73,12 +63,7 @@ export default createRule<Options, MessageIds>({
73
63
docs : {
74
64
description :
75
65
'Enforce unbound methods are called with their expected scope' ,
76
- /** @deprecated */
77
- requiresTypeChecking : true ,
78
66
...baseRule ?. meta . docs ,
79
- // mark this as not recommended
80
- /** @deprecated */
81
- recommended : undefined ,
82
67
} ,
83
68
} ,
84
69
create ( context ) {
You can’t perform that action at this time.
0 commit comments