1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
| /**
| * @fileoverview Rule to disallow returning value from constructor.
| * @author Pig Fang <https://github.com/g-plane>
| */
|
| "use strict";
|
| //------------------------------------------------------------------------------
| // Rule Definition
| //------------------------------------------------------------------------------
|
| module.exports = {
| meta: {
| type: "problem",
|
| docs: {
| description: "disallow returning value from constructor",
| category: "Best Practices",
| recommended: false,
| url: "https://eslint.org/docs/rules/no-constructor-return"
| },
|
| schema: {},
|
| fixable: null,
|
| messages: {
| unexpected: "Unexpected return statement in constructor."
| }
| },
|
| create(context) {
| const stack = [];
|
| return {
| onCodePathStart(_, node) {
| stack.push(node);
| },
| onCodePathEnd() {
| stack.pop();
| },
| ReturnStatement(node) {
| const last = stack[stack.length - 1];
|
| if (!last.parent) {
| return;
| }
|
| if (
| last.parent.type === "MethodDefinition" &&
| last.parent.kind === "constructor" &&
| (node.parent.parent === last || node.argument)
| ) {
| context.report({
| node,
| messageId: "unexpected"
| });
| }
| }
| };
| }
| };
|
|