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/components/playerList.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'frontend/src/components/playerList.js') diff --git a/frontend/src/components/playerList.js b/frontend/src/components/playerList.js index b7f6e7c3..1a68b067 100644 --- a/frontend/src/components/playerList.js +++ b/frontend/src/components/playerList.js @@ -1,7 +1,7 @@ -import React from "react"; -import { Flex } from "reflexbox"; -import { Text } from "rebass"; -import Immutable from "seamless-immutable"; +import React from 'react'; +import { Flex } from 'reflexbox'; +import { Text } from 'rebass'; +import Immutable from 'seamless-immutable'; const PlayerList = props => (
-- cgit