@@ -109,6 +109,7 @@ import { convertNoUseBeforeDeclare } from "./ruleConverters/no-use-before-declar
109
109
import { convertNoVarKeyword } from "./ruleConverters/no-var-keyword" ;
110
110
import { convertNoVarRequires } from "./ruleConverters/no-var-requires" ;
111
111
import { convertNoVoidExpression } from "./ruleConverters/no-void-expression" ;
112
+ import { convertNoWithStatement } from "./ruleConverters/no-with-statement" ;
112
113
import { convertObjectLiteralKeyQuotes } from "./ruleConverters/object-literal-key-quotes" ;
113
114
import { convertObjectLiteralShorthand } from "./ruleConverters/object-literal-shorthand" ;
114
115
import { convertOneLine } from "./ruleConverters/one-line" ;
@@ -376,6 +377,7 @@ export const ruleConverters = new Map([
376
377
[ "no-var-keyword" , convertNoVarKeyword ] ,
377
378
[ "no-var-requires" , convertNoVarRequires ] ,
378
379
[ "no-void-expression" , convertNoVoidExpression ] ,
380
+ [ "no-with-statement" , convertNoWithStatement ] ,
379
381
[ "object-literal-key-quotes" , convertObjectLiteralKeyQuotes ] ,
380
382
[ "object-literal-shorthand" , convertObjectLiteralShorthand ] ,
381
383
[ "one-line" , convertOneLine ] ,
@@ -471,5 +473,4 @@ export const ruleConverters = new Map([
471
473
// ["max-func-body-length", convertMaxFuncBodyLength],
472
474
// ["no-function-expression", convertNoFunctionExpression], // ban-syntax config
473
475
// ["no-suspicious-comment", convertNoSuspiciousComment],
474
- // ["no-with-statement", convertNoWithStatement],
475
476
] ) ;
0 commit comments