hindent-4.4.2: src/HIndent/Styles/Fundamental.hs
{-# LANGUAGE OverloadedStrings #-}
-- | Fundamental built-in style. Defines no additional extensions or
-- configurations beyond the default printer.
module HIndent.Styles.Fundamental where
import HIndent.Types
import Data.Default
-- | Empty state.
data State = State
-- | The printer style.
fundamental :: Style
fundamental =
Style {styleName = "fundamental"
,styleAuthor = "Chris Done"
,styleDescription = "This style adds no extensions to the built-in printer."
,styleInitialState = State
,styleExtenders = []
,styleDefConfig = def
,styleCommentPreprocessor = return}