Disallow Shadowing of Restricted Names (no-shadow-restricted-names)

ES5 §15.1.1 Value Properties of the Global Object (NaN, Infinity, undefined) as well as strict mode restricted identifiers eval and arguments are considered to be restricted names in JavaScript. Defining them to mean something else can have unintended consequences and confuse others reading the code. For example, there’s nothing prevent you from writing:

var undefined = "foo";

Then any code used within the same scope would not get the global undefined, but rather the local version with a very different meaning.

Rule Details

The following patterns are considered problems:

/*eslint no-shadow-restricted-names: 2*/

function NaN(){}       /*error Shadowing of global property 'NaN'.*/

!function(Infinity){}; /*error Shadowing of global property 'Infinity'.*/

var undefined;         /*error Shadowing of global property 'undefined'.*/

try {} catch(eval){}   /*error Shadowing of global property 'eval'.*/

The following patterns are not considered problems:

/*eslint no-shadow-restricted-names: 2*/

var Object;

function f(a, b){}

Further Reading

Version

This rule was introduced in ESLint 0.1.4.

Resources