@@ -91,6 +91,7 @@ import { convertPromiseFunctionAsync } from "./converters/promise-function-async
91
91
import { convertRadix } from "./converters/radix" ;
92
92
import { convertRestrictPlusOperands } from "./converters/restrict-plus-operands" ;
93
93
import { convertSpaceBeforeFunctionParen } from "./converters/space-before-function-paren" ;
94
+ import { convertSpaceWithinParens } from "./converters/space-within-parens" ;
94
95
import { convertSwitchDefault } from "./converters/switch-default" ;
95
96
import { convertTypedefWhitespace } from "./converters/typedef-whitespace" ;
96
97
import { convertTypeLiteralDelimiter } from "./converters/type-literal-delimiter" ;
@@ -196,6 +197,7 @@ export const converters = new Map([
196
197
[ "prefer-function-over-method" , convertPreferFunctionOverMethod ] ,
197
198
[ "prefer-template" , convertPreferTemplate ] ,
198
199
[ "space-before-function-paren" , convertSpaceBeforeFunctionParen ] ,
200
+ [ "space-within-parens" , convertSpaceWithinParens ] ,
199
201
[ "switch-default" , convertSwitchDefault ] ,
200
202
[ "no-banned-terms" , convertNoBannedTerms ] ,
201
203
[ "no-constant-condition" , convertNoConstantCondition ] ,
@@ -222,7 +224,6 @@ export const converters = new Map([
222
224
// ["no-unused-expression", convertNoUnusedExpression], // no-unused-expressions
223
225
// ["no-void-expression", convertNoVoidExpression], // (no exact equivalent)
224
226
// ["quotemark", convertQuotemark], // quotes
225
- // ["space-within-parens", convertSpaceWithinParens], // space-in-parens
226
227
// ["triple-equals", convertTripleEquals], // eqeqeq
227
228
// ["variable-name", convertVariableName], // a bunch of rules...
228
229
0 commit comments