File tree 2 files changed +25
-1
lines changed
2 files changed +25
-1
lines changed Original file line number Diff line number Diff line change @@ -271,7 +271,7 @@ const getFunctionParameterNames = (
271
271
throw new Error ( `Unsupported function signature format: \`${ param . type } \`.` ) ;
272
272
} ;
273
273
274
- return functionNode . params . map ( ( param ) => {
274
+ return ( functionNode . params || functionNode . value . params ) . map ( ( param ) => {
275
275
return getParamName ( param ) ;
276
276
} ) ;
277
277
} ;
Original file line number Diff line number Diff line change @@ -3366,5 +3366,29 @@ export default {
3366
3366
sourceType : 'module' ,
3367
3367
} ,
3368
3368
} ,
3369
+ {
3370
+ code : `
3371
+ /**
3372
+ * [A description]
3373
+ */
3374
+ class A {
3375
+ /**
3376
+ * @param config
3377
+ */
3378
+ constructor (config: SomeConfig) {
3379
+ super(config);
3380
+ }
3381
+ }
3382
+ ` ,
3383
+ ignoreReadme : true ,
3384
+ options : [
3385
+ {
3386
+ contexts : [
3387
+ 'MethodDefinition' ,
3388
+ ] ,
3389
+ } ,
3390
+ ] ,
3391
+ parser : require . resolve ( '@typescript-eslint/parser' ) ,
3392
+ } ,
3369
3393
] ,
3370
3394
} ;
You can’t perform that action at this time.
0 commit comments