24 lines
588 B
Haskell
24 lines
588 B
Haskell
{-# LANGUAGE NoImplicitPrelude #-}
|
|
|
|
module Language.Haskell.Brittany
|
|
-- ( parsePrintModule
|
|
-- , staticDefaultConfig
|
|
( forwardOptionsSyntaxExtsEnabled
|
|
, userConfigPath
|
|
, findLocalConfigPath
|
|
, readConfigs
|
|
, readConfigsWithUserConfig
|
|
, Config
|
|
, CConfig(..)
|
|
, CDebugConfig(..)
|
|
, CLayoutConfig(..)
|
|
, CErrorHandlingConfig(..)
|
|
, CForwardOptions(..)
|
|
, CPreProcessorConfig(..)
|
|
, BrittanyError(..)
|
|
) where
|
|
|
|
import Language.Haskell.Brittany.Internal.Config.Config
|
|
import Language.Haskell.Brittany.Internal.Config.Types
|
|
import Language.Haskell.Brittany.Internal.Types
|