-
-
Notifications
You must be signed in to change notification settings - Fork 169
Closed
Labels
Description
Expected behavior
/**
* This is the description for my cool function.
*
* @param arg1 This is the number for my cool function.
*/
@MyDecorator
function foo(arg1: number) {}This function should result in no errors.
Actual behavior
@param "arg1" does not match an existing function parameter.
Removing the decorator fixes the problem.
ESLint Config
"jsdoc/check-param-names": "warn"