Motivation
For example:
class MyClass {
/**
* Description of member function.
*/
outerFunc() {
/**
* Description of inner function.
*/
innerFunc() { }
return innerFunc;
}
}
Compare the options in the ESLint Stylistic rule lines-around-comment and the typescript variant.
Current behavior
Warns about jsdoc comments immediately after the start of a class/function/block.
Desired behavior
Options not to warn about those positions.
Motivation
For example:
Compare the options in the ESLint Stylistic rule lines-around-comment and the typescript variant.
Current behavior
Warns about jsdoc comments immediately after the start of a class/function/block.
Desired behavior
Options not to warn about those positions.