diff options
author | Vincent Ambo <tazjin@google.com> | 2019-08-25T19·15+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2019-08-25T19·15+0100 |
commit | 1747df418e8cdd5d9de1a643354d7ac28591ed14 (patch) | |
tree | d2d2ff27374bd40f5c3bcdf366343b1b76297a1c /services/tazblog/src/Locales.hs | |
parent | 2fdc87222871e6b68ba2d7ee1c634cfa0d75c572 (diff) |
chore(tazblog): Format source files with ormolu r/60
Ormolu's formatting is quite annoying (it uses a lot of unnecessary vertical space and doesn't align elements), but I can't be bothered to do manual formatting - especially because whatever formatting haskell-mode in Emacs produces seems to depend on an opaque state machine or something.
Diffstat (limited to 'services/tazblog/src/Locales.hs')
-rw-r--r-- | services/tazblog/src/Locales.hs | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/services/tazblog/src/Locales.hs b/services/tazblog/src/Locales.hs index 2e49809eee32..79edcd75f32a 100644 --- a/services/tazblog/src/Locales.hs +++ b/services/tazblog/src/Locales.hs @@ -1,17 +1,20 @@ -{-# LANGUAGE ScopedTypeVariables, OverloadedStrings #-} +{-# LANGUAGE OverloadedStrings #-} +{-# LANGUAGE ScopedTypeVariables #-} + module Locales where -import Data.Maybe (fromMaybe) -import Data.Text (Text) -import qualified Data.Text as T -import Network.URI +import Data.Maybe (fromMaybe) +import Data.Text (Text) +import qualified Data.Text as T +import Network.URI data BlogLang = EN | DE - deriving (Eq, Ord) + deriving (Eq, Ord) instance Show BlogLang where - show DE = "de" - show EN = "en" + + show DE = "de" + show EN = "en" data BlogError = NotFound | UnknownError |