We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0697678 commit e612d0aCopy full SHA for e612d0a
server/Main.hs
@@ -65,7 +65,7 @@ server externs port = do
65
compile input
66
| length input > 20000 = return $ Left "Please limit your input to 20000 characters"
67
| otherwise = do
68
- let printErrors = P.prettyPrintMultipleErrors P.defaultPPEOptions
+ let printErrors = P.prettyPrintMultipleErrors (P.defaultPPEOptions { P.ppeCodeColor = Nothing })
69
case P.parseModuleFromFile (const "<file>") (undefined, input) of
70
Left parseError ->
71
return . Left . printErrors . P.MultipleErrors . return . P.toPositionedError $ parseError
0 commit comments