Dmitrii Kovanikov
Dmitrii Kovanikov
@german1608 I believe no one is looking (or at least haven't written about this explicitly). So feel free to work on this 🙂
It's probably possible. But I'm afraid that the ergonomics will suffer. As far as I can tell from the library, the type-level set of exceptions needs to be constructed like...
An alternative solution is to use the [reflection](http://hackage.haskell.org/package/reflection) for this purpose. It's similar to `ImplicitParams`. I've spent some time diving into this library, and I'm going to describe the approach...
The implementation was reverted due to a bug in GHC and not reliable behaviour.
@vrom911 Oh, dear, that's unfortunate 😞 I have no idea how to overcome this. I see that the `callCommand` uses the `withCreateProcess_` function and rethrows the `ExitCode` as `IOError`. So,...
@InfiniteVerma go for it! 👍🏻 Note, that you don't need to document **everything** in a single PR. You can document only some bits. Every contribution helps the project 😌
@InfiniteVerma You can test IO functions as well with `doctest`. The official documentation has an example: * https://github.com/sol/doctest#multi-line-output
@jrp2014 This particular issue is actually about a different thing. @vrom911 refactored the `printMinimalImports` function in GHC, so we could use [getMinimalImports](https://hackage.haskell.org/package/ghc-8.6.5/docs/RnNames.html#v:getMinimalImports) to implement #42. This issue is about refactoring...
@hasufell This data type is not enough since packages on Hackage can have fewer components, like `1.0`. So we need to be able to represent such values without filling the...
Hi @dariodsa! I see that the `SGR` data type from the [ansi-terminal](http://hackage.haskell.org/package/ansi-terminal-0.11/docs/System-Console-ANSI-Types.html#t:SGR) library has the `SetRGBColor` constructor, that allows specifying the colour in RGB. I don't mind introducing a function...