@@ -45,6 +45,7 @@ import { convertNoEmptyInterface } from "./converters/no-empty-interface";
4545import { convertNoEval } from "./converters/no-eval" ;
4646import { convertNoExplicitAny } from "./converters/no-explicit-any" ;
4747import { convertNoFloatingPromises } from "./converters/no-floating-promises" ;
48+ import { convertNoForIn } from "./converters/no-for-in" ;
4849import { convertNoForInArray } from "./converters/no-for-in-array" ;
4950import { convertNoInferrableTypes } from "./converters/no-inferrable-types" ;
5051import { convertNoInternalModule } from "./converters/no-internal-module" ;
@@ -142,6 +143,7 @@ export const converters = new Map([
142143 [ "no-empty-interface" , convertNoEmptyInterface ] ,
143144 [ "no-eval" , convertNoEval ] ,
144145 [ "no-floating-promises" , convertNoFloatingPromises ] ,
146+ [ "no-for-in" , convertNoForIn ] ,
145147 [ "no-for-in-array" , convertNoForInArray ] ,
146148 [ "no-inferrable-types" , convertNoInferrableTypes ] ,
147149 [ "no-internal-module" , convertNoInternalModule ] ,
@@ -236,7 +238,6 @@ export const converters = new Map([
236238 // tslint-microsoft-contrib rules:
237239 // ["max-func-body-length", convertMaxFuncBodyLength],
238240 // ["no-empty-line-after-opening-brace", convertNoEmptyLineAfterOpeningBrace], // padded-blocks
239- // ["no-for-in", convertNoForIn], // no-restricted-syntax config
240241 // ["no-function-expression", convertNoFunctionExpression], // ban-syntax config
241242 // ["no-suspicious-comment", convertNoSuspiciousComment],
242243 // ["no-with-statement", convertNoWithStatement],
0 commit comments