Skip to content

Commit

Permalink
Revert "Forbid using window properties as global variables" (#2099)
Browse files Browse the repository at this point in the history
* Revert "Ignore the yarn cache directory (#2063)"

This reverts commit 94149c7.

* Revert "Forbid using window properties as global variables (#1840)"

This reverts commit 5a7d8e8.
  • Loading branch information
gaearon committed May 8, 2017
1 parent 94149c7 commit 3a527f2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 11 deletions.
8 changes: 1 addition & 7 deletions packages/eslint-config-react-app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,19 +26,13 @@ module.exports = {
plugins: ['import', 'flowtype', 'jsx-a11y', 'react'],

env: {
browser: true,
commonjs: true,
es6: true,
jest: true,
node: true,
},

globals: {
document: true,
window: true,
console: true,
navigator: true
},

parserOptions: {
ecmaVersion: 6,
sourceType: 'module',
Expand Down
4 changes: 2 additions & 2 deletions packages/react-scripts/fixtures/kitchensink/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class BuiltEmitter extends Component {
}

handleReady() {
document.dispatchEvent(new window.Event('ReactFeatureDidMount'));
document.dispatchEvent(new Event('ReactFeatureDidMount'));
}

render() {
Expand Down Expand Up @@ -54,7 +54,7 @@ class App extends Component {
}

componentDidMount() {
const feature = window.location.hash.slice(1);
const feature = location.hash.slice(1);
switch (feature) {
case 'array-destructuring':
import(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import React from 'react';
import aFileWithoutExt from './assets/aFileWithoutExt';

const text = aFileWithoutExt.includes('base64')
? window.atob(aFileWithoutExt.split('base64,')[1]).trim()
? atob(aFileWithoutExt.split('base64,')[1]).trim()
: aFileWithoutExt;

export default () => (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import React from 'react';
import aFileWithExtUnknown from './assets/aFileWithExt.unknown';

const text = aFileWithExtUnknown.includes('base64')
? window.atob(aFileWithExtUnknown.split('base64,')[1]).trim()
? atob(aFileWithExtUnknown.split('base64,')[1]).trim()
: aFileWithExtUnknown;

export default () => (
Expand Down

0 comments on commit 3a527f2

Please sign in to comment.