/
/
home
/
u523034047
/
domains
/
wasms.shop
/
public_html
/
varified
/
node_modules
/
eslint
/
lib
/
rules
Server: in-mum-web1112.main-hosting.eu (62.72.28.111)
You: 216.73.216.60
PHP 8.3.30
Dir:
/home/u523034047/domains/wasms.shop/public_html/varified/node_modules/eslint/lib/rules
Edit:
/home/u523034047/domains/wasms.shop/public_html/varified/node_modules/eslint/lib/rules/no-void.js
/** * @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", docs: { description: "Disallow `void` operators", recommended: false, url: "https://eslint.org/docs/latest/rules/no-void" }, messages: { noVoid: "Expected 'undefined' and instead saw 'void'." }, schema: [ { type: "object", properties: { allowAsStatement: { type: "boolean", default: false } }, additionalProperties: false } ] }, create(context) { const allowAsStatement = context.options[0] && context.options[0].allowAsStatement; //-------------------------------------------------------------------------- // Public //-------------------------------------------------------------------------- return { 'UnaryExpression[operator="void"]'(node) { if ( allowAsStatement && node.parent && node.parent.type === "ExpressionStatement" ) { return; } context.report({ node, messageId: "noVoid" }); } }; } };
Ukuran: 1.7 KB