Skip to content
Permalink
ed9506bbaf
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
Latest commit c96f843 Sep 14, 2020 History
0 contributors

Users who have contributed to this file

64 lines (56 sloc) 1.71 KB
/**
* @fileoverview Rule to disallow use of void operator.
* @author Mike Sidorov
*/
"use strict";
//------------------------------------------------------------------------------
// Rule Definition
//------------------------------------------------------------------------------
module.exports = {
meta: {
type: "suggestion",
docs: {
description: "disallow `void` operators",
category: "Best Practices",
recommended: false,
url: "https://eslint.org/docs/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"
});
}
};
}
};