Fix "global-strict" lint

Reviewed By: @vjeux

Differential Revision: D2420561
This commit is contained in:
Alex Kotliarskyi 2015-09-09 01:37:01 -07:00 committed by facebook-github-bot-8
parent c71c940803
commit d82af3cb92
1 changed files with 1 additions and 3 deletions

View File

@ -126,9 +126,7 @@
// Strict Mode
// These rules relate to using strict mode.
"global-strict": [2, "always"], // require or disallow the "use strict" pragma in the global scope (off by default in the node environment)
"no-extra-strict": 1, // disallow unnecessary use of "use strict"; when already in strict mode
"strict": 0, // require that all functions are run in strict mode
"strict": [2, "global"], // require or disallow the "use strict" pragma in the global scope (off by default in the node environment)
// Variables
// These rules have to do with variable declarations.