odin-default-js-exercises/node_modules/eslint/lib/rules/no-new-object.js

36 lines
830 B
JavaScript
Raw Normal View History

2017-12-15 18:56:14 +00:00
/**
* @fileoverview A rule to disallow calls to the Object constructor
* @author Matt DuVall <http://www.mattduvall.com/>
*/
"use strict";
//------------------------------------------------------------------------------
// 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, message: "The object literal notation {} is preferrable." });
}
}
};
}
};