diff --git a/elm/review/src/ReviewConfig.elm b/elm/review/src/ReviewConfig.elm index c4f8fde9..afbd1a53 100644 --- a/elm/review/src/ReviewConfig.elm +++ b/elm/review/src/ReviewConfig.elm @@ -26,15 +26,18 @@ config : List Rule config = [ NoUnused.Variables.rule ] + + + {- -config = - [ NoUnused.CustomTypeConstructors.rule [] - , NoUnused.CustomTypeConstructorArgs.rule - , NoUnused.Dependencies.rule - , NoUnused.Exports.rule - , NoUnused.Modules.rule - , NoUnused.Parameters.rule - , NoUnused.Patterns.rule - , NoUnused.Variables.rule - ] + config = + [ NoUnused.CustomTypeConstructors.rule [] + , NoUnused.CustomTypeConstructorArgs.rule + , NoUnused.Dependencies.rule + , NoUnused.Exports.rule + , NoUnused.Modules.rule + , NoUnused.Parameters.rule + , NoUnused.Patterns.rule + , NoUnused.Variables.rule + ] -} diff --git a/elm/src/Console/Text.elm b/elm/src/Console/Text.elm index 81c2b689..ca40a750 100644 --- a/elm/src/Console/Text.elm +++ b/elm/src/Console/Text.elm @@ -158,50 +158,6 @@ dark txt = --- BACKGROUND COLORS -- - - -bgRed : String -> Text -bgRed = - Text { foreground = Default, background = Red, style = Normal, modifiers = [] } - - -bgGreen : String -> Text -bgGreen = - Text { foreground = Default, background = Green, style = Normal, modifiers = [] } - - -bgYellow : String -> Text -bgYellow = - Text { foreground = Default, background = Yellow, style = Normal, modifiers = [] } - - -bgBlack : String -> Text -bgBlack = - Text { foreground = Default, background = Black, style = Normal, modifiers = [] } - - -bgBlue : String -> Text -bgBlue = - Text { foreground = Default, background = Blue, style = Normal, modifiers = [] } - - -bgMagenta : String -> Text -bgMagenta = - Text { foreground = Default, background = Magenta, style = Normal, modifiers = [] } - - -bgCyan : String -> Text -bgCyan = - Text { foreground = Default, background = Cyan, style = Normal, modifiers = [] } - - -bgWhite : String -> Text -bgWhite = - Text { foreground = Default, background = White, style = Normal, modifiers = [] } - - - -- STYLES --