definition:
|
updateConfigWithOpts :: [Flag] -> Config -> IO Config
updateConfigWithOpts [] conf = return conf
updateConfigWithOpts (f:fs) conf@(Config checks out verb hint code maxLength) = case f of
(Ignore s) -> do
newCheckl <- updateChecks s checks False conf
updateConfigWithOpts fs (Config newCheckl out verb hint code maxLength)
(Add s) -> do
newCheckl <- updateChecks s checks True conf
updateConfigWithOpts fs (Config newCheckl out verb hint code maxLength)
(OType "JSON") ->
updateConfigWithOpts fs (conf {oType = JSON})
(OType "TEXT") ->
updateConfigWithOpts fs (conf {oType = TEXT})
(Verbosity i) ->
updateConfigWithOpts fs (conf {verbosity = (if ((i < 4) && (i > -1)) then i else 1)})
_ -> updateConfigWithOpts fs conf
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Updates config after reading the currystylecheckrc by updating according to the flag.
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({[]},_) |-> _ || ({:},{Config}) |-> _}
|
name:
|
updateConfigWithOpts
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
[Types.Flag] -> Types.Config -> Prelude.IO Types.Config
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|