From f8333f51a93a132d19e210e6c18f0b25587a896b Mon Sep 17 00:00:00 2001 From: Vesa Luusua Date: Mon, 23 Jan 2017 19:56:42 +0200 Subject: [PATCH] Prettier enhancement: use eslint-disable-next-line --- src/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index 90e229be..30f46bd5 100644 --- a/src/index.js +++ b/src/index.js @@ -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(, document.getElementById('root'));