Files
memecoin-botV2/.pnpm-store/v10/files/57/ecb6af743c029832399dbb7af7ac6e8374705d4798bc8b29fa68a00ceee63a23fb44cfea6b6ebde76e3342f6efa272ac121fd03add27a6259a617e2cc4db09

63 lines
1.2 KiB
Plaintext

/**
* @fileoverview Rule to disallow returning value from constructor.
* @author Pig Fang <https://github.com/g-plane>
*/
"use strict";
//------------------------------------------------------------------------------
// Rule Definition
//------------------------------------------------------------------------------
/** @type {import('../types').Rule.RuleModule} */
module.exports = {
meta: {
type: "problem",
docs: {
description: "Disallow returning value from constructor",
recommended: false,
url: "https://eslint.org/docs/latest/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.at(-1);
if (!last.parent) {
return;
}
if (
last.parent.type === "MethodDefinition" &&
last.parent.kind === "constructor" &&
node.argument
) {
context.report({
node,
messageId: "unexpected",
});
}
},
};
},
};