Matt Parsons
Matt Parsons
OK, tests are failing now due to actual diff changes. Which is *weird* because they pass for me locally.
I was using 9.4.3 when it was latest, will try with 9.4.4
Updated the PR to use all the encoding stuff from `aeson`. No dice! Results are *not* demonstrably improved. PR is using `[(Text, Value)]` for the objects. Next step, try `Map...
Oh, sigh. `ppJsonIndex` renders stuff to JSON, but the *first* thing it does is parse all the `installedIndexes`. ```haskell (errors, installedIndexes) do let indexFile = takeDirectory ifaceFile FilePath. "doc-index.json" a
I started down the path of porting some of `aeson`'s parser to `parsec`, but it's more annoying than I want to deal with, and I don't trust that an optimized...
I'm not sure - #1559 uses `Text` and `Map` and doesn't get close. I suspect the machinery in `toEncoding` and the other `Value -> Builder` is the secret sauce. I...
We were using basically what you implemented, which was good but we ended up wanting to customize the timeout value. This is what our solution looks like: ```haskell {-# OPTIONS_GHC...
I think `Hooks` is the wrong location for this. contrib package may be a better fit
Is there a specific JSON format we're targetting here? Both seem like a useful `Formatter` to have. If I were trying to prioritize this myself, I'd be thinking about what...