Disallow returning value from constructor
In JavaScript, returning a value in the constructor of a class may be a mistake. Forbidding this pattern prevents mistakes resulting from unfamiliarity with the language or a copy-paste error.
This rule disallows return statements in the constructor of a class. Note that returning nothing with flow control is allowed.
Examples of incorrect code for this rule:
Examples of correct code for this rule:
This rule was introduced in ESLint v6.7.0.
© OpenJS Foundation and other contributors
Licensed under the MIT License.
https://eslint.org/docs/latest/rules/no-constructor-return