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.
27 lines
709 B
27 lines
709 B
/**
|
|
* @fileoverview Rule to check for ambiguous div operator in regexes
|
|
* @author Matt DuVall <http://www.mattduvall.com>
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Rule Definition
|
|
//------------------------------------------------------------------------------
|
|
|
|
module.exports = function(context) {
|
|
|
|
return {
|
|
|
|
"Literal": function(node) {
|
|
var token = context.getFirstToken(node);
|
|
|
|
if (token.type === "RegularExpression" && token.value[1] === "=") {
|
|
context.report(node, "A regular expression literal can be confused with '/='.");
|
|
}
|
|
}
|
|
};
|
|
|
|
};
|
|
|
|
module.exports.schema = [];
|
|
|