Prettier enhancement: use eslint-disable-next-line

This commit is contained in:
Vesa Luusua 2017-01-23 19:56:42 +02:00
parent 6e6bb28211
commit f8333f51a9

View file

@ -20,7 +20,8 @@ import './index.css';
// If we're in a browser already, render the client application.
if (typeof window !== 'undefined') {
const preloadedState = window.__PRELOADED_STATE__ || {}; // eslint-disable-line no-underscore-dangle
// eslint-disable-next-line no-underscore-dangle
const preloadedState = window.__PRELOADED_STATE__ || {};
const store = configureStore(preloadedState);
ReactDOM.render(<ClientApp store={store} />, document.getElementById('root'));