@@ -57,6 +57,7 @@ import { convertNoDuplicateVariable } from "./ruleConverters/no-duplicate-variab
5757import { convertNoDynamicDelete } from './ruleConverters/no-dynamic-delete' ;
5858import { convertNoEmpty } from "./ruleConverters/no-empty" ;
5959import { convertNoEmptyInterface } from "./ruleConverters/no-empty-interface" ;
60+ import { convertNoEmptyLineAfterOpeningBrace } from "./ruleConverters/no-empty-line-after-opening-brace" ;
6061import { convertNoEval } from "./ruleConverters/no-eval" ;
6162import { convertNoExplicitAny } from "./ruleConverters/no-explicit-any" ;
6263import { convertNoFloatingPromises } from "./ruleConverters/no-floating-promises" ;
@@ -309,6 +310,7 @@ export const ruleConverters = new Map([
309310 [ "no-duplicate-variable" , convertNoDuplicateVariable ] ,
310311 [ "no-dynamic-delete" , convertNoDynamicDelete ] ,
311312 [ "no-empty-interface" , convertNoEmptyInterface ] ,
313+ [ "no-empty-line-after-opening-brace" , convertNoEmptyLineAfterOpeningBrace ] , // padded-blocks
312314 [ "no-empty" , convertNoEmpty ] ,
313315 [ "no-eval" , convertNoEval ] ,
314316 [ "no-floating-promises" , convertNoFloatingPromises ] ,
@@ -465,7 +467,6 @@ export const ruleConverters = new Map([
465467
466468 // tslint-microsoft-contrib rules:
467469 // ["max-func-body-length", convertMaxFuncBodyLength],
468- // ["no-empty-line-after-opening-brace", convertNoEmptyLineAfterOpeningBrace], // padded-blocks
469470 // ["no-function-expression", convertNoFunctionExpression], // ban-syntax config
470471 // ["no-suspicious-comment", convertNoSuspiciousComment],
471472 // ["no-with-statement", convertNoWithStatement],
0 commit comments