charlike
Version:
Small, fast, simple and streaming project scaffolder for myself, but not only. Supports hundreds of template engines through the @JSTransformers API or if you want custom `render` function passed through options
36 lines (27 loc) • 817 B
JavaScript
/**
* @fileoverview A rule to disallow calls to the Object constructor
* @author Matt DuVall <http://www.mattduvall.com/>
*/
;
//------------------------------------------------------------------------------
// Rule Definition
//------------------------------------------------------------------------------
module.exports = {
meta: {
docs: {
description: "disallow `Object` constructors",
category: "Stylistic Issues",
recommended: false
},
schema: []
},
create(context) {
return {
NewExpression(node) {
if (node.callee.name === "Object") {
context.report(node, "The object literal notation {} is preferrable.");
}
}
};
}
};