mojotech / modernator-haskell

An API server for hosting Reddit AMA style Q&A sessions.
GNU General Public License v3.0
4 stars 0 forks source link

Qualify or fully specify imports everywhere #2

Open RocketPuppy opened 8 years ago

RocketPuppy commented 8 years ago

It can be difficult to tell where functions come from when imports aren't qualified or fully specified. This hurts readability.

Qualified:

import qualified Data.Aeson as Aeson

Specified:

import Data.Aeson (encode)