Showing 0 of 1 total issue
'setTimeout' is not defined. Wontfix
setTimeout(() => this.setState({message: ''}), 2500)
- Read upRead up
- Create a ticketCreate a ticket
- Exclude checks
setTimeout(() => this.setState({message: ''}), 2500)
This rule can help you locate potential ReferenceErrors resulting from misspellings of variable and parameter names, or accidental implicit globals (for example, from forgetting the var
keyword in a for
loop initializer).
Any reference to an undeclared variable causes a warning, unless the variable is explicitly mentioned in a /*global ...*/
comment.
Examples of incorrect code for this rule:
/*eslint no-undef: "error"*/ var a = someFunction();b = 10;
Examples of correct code for this rule with global
declaration:
/*global someFunction b:true*//*eslint no-undef: "error"*/ var a = someFunction();b = 10;
The b:true
syntax in /*global */
indicates that assignment to b
is correct.
Examples of incorrect code for this rule with global
declaration:
/*global b*//*eslint no-undef: "error"*/ b = 10;
By default, variables declared in /*global */
are read-only, therefore assignment is incorrect.
typeof
set to true will warn for variables used inside typeof check (Default false).Examples of correct code for the default { "typeof": false }
option:
/*eslint no-undef: "error"*/ if (typeof UndefinedIdentifier === "undefined") { // do something ...}
You can use this option if you want to prevent typeof
check on a variable which has not been declared.
Examples of incorrect code for the { "typeof": true }
option:
/*eslint no-undef: ["error", { "typeof": true }] */ if(typeof a === "string"){}
Examples of correct code for the { "typeof": true }
option with global
declaration:
/*global a*//*eslint no-undef: ["error", { "typeof": true }] */ if(typeof a === "string"){}
For convenience, ESLint provides shortcuts that pre-define global variables exposed by popular libraries and runtime environments. This rule supports these environments, as listed in Specifying Environments. A few examples are given below.
Examples of correct code for this rule with browser
environment:
/*eslint no-undef: "error"*//*eslint-env browser*/ setTimeout(function() { alert("Hello");});
Examples of correct code for this rule with node
environment:
/*eslint no-undef: "error"*//*eslint-env node*/ var fs = require("fs");module.exports = function() { console.log(fs);};
If explicit declaration of global variables is not to your taste.
This rule provides compatibility with treatment of global variables in JSHint and JSLint. Source: http://eslint.org/docs/rules/