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
670 B
27 lines
670 B
10 years ago
|
/**
|
||
|
* @fileoverview Rule to flag when initializing to undefined
|
||
|
* @author Ilya Volodin
|
||
|
*/
|
||
|
|
||
|
"use strict";
|
||
|
|
||
|
//------------------------------------------------------------------------------
|
||
|
// Rule Definition
|
||
|
//------------------------------------------------------------------------------
|
||
|
|
||
|
module.exports = function(context) {
|
||
|
|
||
|
return {
|
||
|
|
||
|
"VariableDeclarator": function(node) {
|
||
|
var name = node.id.name;
|
||
|
var init = node.init && node.init.name;
|
||
|
|
||
|
if (init === "undefined") {
|
||
|
context.report(node, "It's not necessary to initialize '{{name}}' to undefined.", { name: name });
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
|
||
|
};
|