node/tools/eslint/lib/rules/no-native-reassign.js
Roman Reiss d91e10b3bd tools: update eslint to 0.24.0
PR-URL: https://github.com/nodejs/io.js/pull/2072
Reviewed-By: Yosuke Furukawa <yosuke.furukawa@gmail.com>
Reviewed-by: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Alex Kocharin <alex@kocharin.ru>
2015-06-29 19:02:17 +02:00

63 lines
2.0 KiB
JavaScript

/**
* @fileoverview Rule to flag when re-assigning native objects
* @author Ilya Volodin
*/
"use strict";
//------------------------------------------------------------------------------
// Rule Definition
//------------------------------------------------------------------------------
module.exports = function(context) {
var NATIVE_OBJECTS = ["Array", "Boolean", "Date", "decodeURI",
"decodeURIComponent", "encodeURI", "encodeURIComponent",
"Error", "eval", "EvalError", "Function", "isFinite",
"isNaN", "JSON", "Math", "Number", "Object", "parseInt",
"parseFloat", "RangeError", "ReferenceError", "RegExp",
"String", "SyntaxError", "TypeError", "URIError",
"Map", "NaN", "Set", "WeakMap", "Infinity", "undefined"];
var config = context.options[0] || {};
var exceptions = config.exceptions || [];
var modifiedNativeObjects = NATIVE_OBJECTS;
if (exceptions.length) {
modifiedNativeObjects = NATIVE_OBJECTS.filter(function(builtIn) {
return exceptions.indexOf(builtIn) === -1;
});
}
return {
"AssignmentExpression": function(node) {
if (modifiedNativeObjects.indexOf(node.left.name) >= 0) {
context.report(node, node.left.name + " is a read-only native object.");
}
},
"VariableDeclarator": function(node) {
if (modifiedNativeObjects.indexOf(node.id.name) >= 0) {
context.report(node, "Redefinition of '{{nativeObject}}'.", { nativeObject: node.id.name });
}
}
};
};
module.exports.schema = [
{
"type": "object",
"properties": {
"exceptions": {
"type": "array",
"items": {
"type": "string"
},
"uniqueItems": true
}
},
"additionalProperties": false
}
];