Files
med-notes/.pnpm-store/v10/files/b2/6d775f7b8c162a9b47817d2e87a2cd85bffa33ad6127f3e1c0e336f1f18774cb4abe1d429ea0f8fbe084a50ad8b6d39855a4302bd108a44bfdec9f6b257a8b
2025-05-09 05:30:08 +02:00

43 lines
901 B
Plaintext

/**
* @fileoverview Rule to flag statements with function invocation preceded by
* "new" and not part of assignment
* @author Ilya Volodin
*/
"use strict";
//------------------------------------------------------------------------------
// Rule Definition
//------------------------------------------------------------------------------
/** @type {import('../shared/types').Rule} */
module.exports = {
meta: {
type: "suggestion",
docs: {
description:
"Disallow `new` operators outside of assignments or comparisons",
recommended: false,
url: "https://eslint.org/docs/latest/rules/no-new",
},
schema: [],
messages: {
noNewStatement: "Do not use 'new' for side effects.",
},
},
create(context) {
return {
"ExpressionStatement > NewExpression"(node) {
context.report({
node: node.parent,
messageId: "noNewStatement",
});
},
};
},
};