Removed eslint rule that checks modules

Summary:Removed eslint rule that checks modules

After we updated to ESLint 2.x, ESLint started complaining `'use strict' is unnecessary inside of modules  strict`.
This is correct behaviour because according to spec modules are strict.
The problem is that our transforms don't transpile strict mode so we still need to have this pragma in all our code.

I did not find a way to make eslint require "use strict" for ES6 modules: https://github.com/eslint/eslint/issues/2785
So I am removing this.

What stops us from automatically adding strict mode with babel?

Need your feedback, frantic martinbigio
David said that you Martin looked into this.
Closes https://github.com/facebook/react-native/pull/6403

Differential Revision: D3038039

Pulled By: martinbigio

fb-gh-sync-id: b8a00c093768a318487dcb89e433859825a08b2c
shipit-source-id: b8a00c093768a318487dcb89e433859825a08b2c
This commit is contained in:
Konstantin Raev 2016-03-10 15:58:36 -08:00 committed by Facebook Github Bot 6
parent 7da65a817c
commit 26b2aa91b6
2 changed files with 2 additions and 5 deletions

View File

@ -147,11 +147,6 @@
"wrap-iife": 0, // require immediate function invocation to be wrapped in parentheses (off by default) "wrap-iife": 0, // require immediate function invocation to be wrapped in parentheses (off by default)
"yoda": 1, // require or disallow Yoda conditions "yoda": 1, // require or disallow Yoda conditions
// Strict Mode
// These rules relate to using strict mode.
"strict": [2, "global"], // require or disallow the "use strict" pragma in the global scope (off by default in the node environment)
// Variables // Variables
// These rules have to do with variable declarations. // These rules have to do with variable declarations.

View File

@ -15,6 +15,8 @@
*/ */
'use strict'; 'use strict';
const React = require('react-native');
export type UIExplorerExample = { export type UIExplorerExample = {
key: string; key: string;
module: React.Component; module: React.Component;