definition: |
styleCheck :: Arguments -> IO () styleCheck a@(_, flags, _) = do config <- getConfig flags >>= updateConfigWithOpts flags restrict config 1 scBanner restrict config 3 (showOptions config) if Help `elem` flags then putStrLn $ usageText ++ "\nSee also the Curry Style Guide at\n\n " ++ styleGuideURL else styleCheck' a config |
demand: |
argument 1 |
deterministic: |
deterministic operation |
documentation: |
-- Starts programm with arguments from commandline, -- if the file to check is found, finds config, if specified in -- commandlineoptions. If config not used or not found, uses defaultConfig. -- Gets `spanAST` and src of code and runs checkAll on these two files, -- returned String (Messages) are put into console output. |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{({(,,)}) |-> _} |
name: |
styleCheck |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
(String, [Types.Flag], [String]) -> Prelude.IO () |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |