Files
med-notes/.pnpm-store/v10/files/4d/2ad096732c9c8bfa508f8fa1b6f2e634931564a341fb6d716c41233ba3148a18a259a25f80d172b7c23f332a7dfb093b5fc74ffb0ff33b7abb600e45fa50f4
2025-05-09 05:30:08 +02:00

70 lines
1.3 KiB
Plaintext

/**
* @fileoverview Rule to disallow use of void operator.
* @author Mike Sidorov
*/
"use strict";
//------------------------------------------------------------------------------
// Rule Definition
//------------------------------------------------------------------------------
/** @type {import('../shared/types').Rule} */
module.exports = {
meta: {
type: "suggestion",
defaultOptions: [
{
allowAsStatement: false,
},
],
docs: {
description: "Disallow `void` operators",
recommended: false,
frozen: true,
url: "https://eslint.org/docs/latest/rules/no-void",
},
messages: {
noVoid: "Expected 'undefined' and instead saw 'void'.",
},
schema: [
{
type: "object",
properties: {
allowAsStatement: {
type: "boolean",
},
},
additionalProperties: false,
},
],
},
create(context) {
const [{ allowAsStatement }] = context.options;
//--------------------------------------------------------------------------
// Public
//--------------------------------------------------------------------------
return {
'UnaryExpression[operator="void"]'(node) {
if (
allowAsStatement &&
node.parent &&
node.parent.type === "ExpressionStatement"
) {
return;
}
context.report({
node,
messageId: "noVoid",
});
},
};
},
};