Skip to content

Commit

Permalink
Docs: Use string severity in example (#6601)
Browse files Browse the repository at this point in the history
  • Loading branch information
scriptdaemon authored and ilyavolodin committed Jul 5, 2016
1 parent 8308c0b commit 9c451a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/rules/no-implicit-globals.md
Expand Up @@ -36,7 +36,7 @@ window.bar = function() {};
Examples of **correct** code for this rule with `"parserOptions": { "sourceType": "module" }` in the ESLint configuration:

```js
/*eslint no-implicit-globals: 2*/
/*eslint no-implicit-globals: "error"*/

// foo and bar are local to module
var foo = 1;
Expand Down

0 comments on commit 9c451a2

Please sign in to comment.