mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
776 B
26 lines
776 B
/**
|
|
* @fileoverview Rule to disallow use of void operator.
|
|
* @author Mike Sidorov
|
|
* @copyright 2014 Mike Sidorov. All rights reserved.
|
|
*/
|
|
"use strict";
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Rule Definition
|
|
//------------------------------------------------------------------------------
|
|
|
|
module.exports = function(context) {
|
|
|
|
//--------------------------------------------------------------------------
|
|
// Public
|
|
//--------------------------------------------------------------------------
|
|
|
|
return {
|
|
"UnaryExpression": function(node) {
|
|
if (node.operator === "void") {
|
|
context.report(node, "Expected 'undefined' and instead saw 'void'.");
|
|
}
|
|
}
|
|
};
|
|
|
|
};
|
|
|