Nicolas Rinaudo
Nicolas Rinaudo
I sometimes want to highlight the first word of a line of code. This, unfortunately, appears to be broken (I've tried on 0.15.0): remark.js seems to not treat backticks, when...
The presence of `(` near a highlighted span yields odds behaviours: For example: ``case `class Token`(`` will include the `(` in the highlighted region - no matter how many spaces...
# Steps to reproduce Have a file containing the following import statement: ```scala import java.time.{ZoneOffset, ZonedDateTime} ``` And run scalastyle with the following configuration: ```xml all .+ true ``` #...
This is a really odd one: I can reproduce an OOM (gc overhead) exception systematically when running tut on my projects, on my local computer, if the scala.js plugin is...
As [discussed](https://twitter.com/lemmster/status/1111683005695692800) on twitter.
It'd be nice for errors to come tagged with the row number at which they arrive. Keeping track of this is fairly straightforward, we need only keep a counter in...
There are cases where it's not possible to provide a `RowDecoder` without a header.
The current structure isn't flexible enough. For example, I sometimes need to fail a decoding for other reasons than type or out of bounds - I might be expecting rows...
`Cogen` and `Arbitrary` instances for errors types are a *lot* of boilerplate that I'd really rather not have to write or maintain. See [this tweet](https://twitter.com/alxarchambault/status/954481766089273344) for a way to mitigate...
The `generic` module is an all-or-nothing affair. It would be better to let users only derive instances for the types they need.