@@ -45,6 +45,7 @@ import { convertNoEmptyInterface } from "./converters/no-empty-interface";
45
45
import { convertNoEval } from "./converters/no-eval" ;
46
46
import { convertNoExplicitAny } from "./converters/no-explicit-any" ;
47
47
import { convertNoFloatingPromises } from "./converters/no-floating-promises" ;
48
+ import { convertNoForIn } from "./converters/no-for-in" ;
48
49
import { convertNoForInArray } from "./converters/no-for-in-array" ;
49
50
import { convertNoInferrableTypes } from "./converters/no-inferrable-types" ;
50
51
import { convertNoInternalModule } from "./converters/no-internal-module" ;
@@ -142,6 +143,7 @@ export const converters = new Map([
142
143
[ "no-empty-interface" , convertNoEmptyInterface ] ,
143
144
[ "no-eval" , convertNoEval ] ,
144
145
[ "no-floating-promises" , convertNoFloatingPromises ] ,
146
+ [ "no-for-in" , convertNoForIn ] ,
145
147
[ "no-for-in-array" , convertNoForInArray ] ,
146
148
[ "no-inferrable-types" , convertNoInferrableTypes ] ,
147
149
[ "no-internal-module" , convertNoInternalModule ] ,
@@ -236,7 +238,6 @@ export const converters = new Map([
236
238
// tslint-microsoft-contrib rules:
237
239
// ["max-func-body-length", convertMaxFuncBodyLength],
238
240
// ["no-empty-line-after-opening-brace", convertNoEmptyLineAfterOpeningBrace], // padded-blocks
239
- // ["no-for-in", convertNoForIn], // no-restricted-syntax config
240
241
// ["no-function-expression", convertNoFunctionExpression], // ban-syntax config
241
242
// ["no-suspicious-comment", convertNoSuspiciousComment],
242
243
// ["no-with-statement", convertNoWithStatement],
0 commit comments