From c03e68041e0f444e18a895058afbdf0d68759517 Mon Sep 17 00:00:00 2001 From: Joffrey BION Date: Sun, 21 May 2017 20:20:45 +0200 Subject: Update prettier config and reformat Here's the discussion summary: - single quote, because that's what I'm used to in the JS world - trailing comma, to avoid unnecessary git changes - print-width 120, because 120 still doesn't require to scroll horizontally, and vertical space is precious --- frontend/src/layouts/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'frontend/src/layouts/index.js') diff --git a/frontend/src/layouts/index.js b/frontend/src/layouts/index.js index f09b2a20..1db9db61 100644 --- a/frontend/src/layouts/index.js +++ b/frontend/src/layouts/index.js @@ -1,2 +1,2 @@ -export { default as HomeLayout } from "./HomeLayout"; -export { default as LobbyLayout } from "./LobbyLayout"; +export { default as HomeLayout } from './HomeLayout'; +export { default as LobbyLayout } from './LobbyLayout'; -- cgit