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.
37 lines
975 B
37 lines
975 B
/**
|
|
* @fileoverview Rule to flag when using constructor for wrapper objects
|
|
* @author Ilya Volodin
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Rule Definition
|
|
//------------------------------------------------------------------------------
|
|
|
|
module.exports = {
|
|
meta: {
|
|
docs: {
|
|
description: "disallow `new` operators with the `String`, `Number`, and `Boolean` objects",
|
|
category: "Best Practices",
|
|
recommended: false
|
|
},
|
|
|
|
schema: []
|
|
},
|
|
|
|
create: function(context) {
|
|
|
|
return {
|
|
|
|
NewExpression: function(node) {
|
|
var wrapperObjects = ["String", "Number", "Boolean", "Math", "JSON"];
|
|
|
|
if (wrapperObjects.indexOf(node.callee.name) > -1) {
|
|
context.report(node, "Do not use {{fn}} as a constructor.", { fn: node.callee.name });
|
|
}
|
|
}
|
|
};
|
|
|
|
}
|
|
};
|
|
|