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
630 B

/**
* @fileoverview Rule to check for the usage of var.
* @author Jamund Ferguson
* @copyright 2014 Jamund Ferguson. All rights reserved.
*/
"use strict";
//------------------------------------------------------------------------------
// Rule Definition
//------------------------------------------------------------------------------
module.exports = function(context) {
return {
"VariableDeclaration": function (node) {
if (node.kind === "var") {
context.report(node, "Unexpected var, use let or const instead.");
}
}
};
};
module.exports.schema = [];