From 57860dc1b455c865c208dffb6ed280a3b16736f9 Mon Sep 17 00:00:00 2001 From: Kenny Tran Date: Sun, 31 Jan 2016 18:20:25 -0800 Subject: [PATCH] Alphabetize imports What is the alphabet? From wikipedia: `An alphabet is a standard set of letters (basic written symbols or graphemes) which is used to write one or more languages based on the general principle that the letters represent phonemes (basic significant sounds) of the spoken language.` Why do we want `import`s to be alphabetized? Alphabetizing `import`s can make parsing them at a quick glance of the eyes easier. --- client/source/scripts/app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/source/scripts/app.js b/client/source/scripts/app.js index e8713b63..4eab3285 100644 --- a/client/source/scripts/app.js +++ b/client/source/scripts/app.js @@ -5,9 +5,9 @@ import Application from './components/layout/Application'; import ApplicationContent from './components/layout/ApplicationContent'; import Modals from './components/modals/Modals'; import Sidebar from './components/panels/Sidebar'; -import TorrentListView from './components/panels/TorrentListView'; -import TorrentDetailsView from './components/panels/TorrentDetailsView'; import TorrentActions from './actions/TorrentActions'; +import TorrentDetailsView from './components/panels/TorrentDetailsView'; +import TorrentListView from './components/panels/TorrentListView'; class FloodApp extends React.Component { componentDidMount() {