@@ -57,6 +57,7 @@ import { convertNoDuplicateVariable } from "./ruleConverters/no-duplicate-variab
57
57
import { convertNoDynamicDelete } from './ruleConverters/no-dynamic-delete' ;
58
58
import { convertNoEmpty } from "./ruleConverters/no-empty" ;
59
59
import { convertNoEmptyInterface } from "./ruleConverters/no-empty-interface" ;
60
+ import { convertNoEmptyLineAfterOpeningBrace } from "./ruleConverters/no-empty-line-after-opening-brace" ;
60
61
import { convertNoEval } from "./ruleConverters/no-eval" ;
61
62
import { convertNoExplicitAny } from "./ruleConverters/no-explicit-any" ;
62
63
import { convertNoFloatingPromises } from "./ruleConverters/no-floating-promises" ;
@@ -309,6 +310,7 @@ export const ruleConverters = new Map([
309
310
[ "no-duplicate-variable" , convertNoDuplicateVariable ] ,
310
311
[ "no-dynamic-delete" , convertNoDynamicDelete ] ,
311
312
[ "no-empty-interface" , convertNoEmptyInterface ] ,
313
+ [ "no-empty-line-after-opening-brace" , convertNoEmptyLineAfterOpeningBrace ] , // padded-blocks
312
314
[ "no-empty" , convertNoEmpty ] ,
313
315
[ "no-eval" , convertNoEval ] ,
314
316
[ "no-floating-promises" , convertNoFloatingPromises ] ,
@@ -465,7 +467,6 @@ export const ruleConverters = new Map([
465
467
466
468
// tslint-microsoft-contrib rules:
467
469
// ["max-func-body-length", convertMaxFuncBodyLength],
468
- // ["no-empty-line-after-opening-brace", convertNoEmptyLineAfterOpeningBrace], // padded-blocks
469
470
// ["no-function-expression", convertNoFunctionExpression], // ban-syntax config
470
471
// ["no-suspicious-comment", convertNoSuspiciousComment],
471
472
// ["no-with-statement", convertNoWithStatement],
0 commit comments