Mikail Khan

Results 20 comments of Mikail Khan

I have the same issue. Bumped a project to Scala 2.13.2 and using `play-json-derived-codecs` (v 7.0.0) and wartremover complains: Given this model: ```scala sealed trait A extends Product with Serializable...

Same occurs even for this: ```scala final case class AuthenticatedRequest[A](request: MessagesRequest[A]) extends WrappedRequest[A](request) ``` ```scala [wartremover:Any] Inferred type containing Any: [A] AuthenticatedRequest[A] ```

I increased the stack size to 1GB and was able to get it all to compile. Wondering if there are any optimisations that can be done in library?

I believe it is shapeless here which is blowing the stack. Do you have any experience with [Magnolia](https://github.com/propensive/magnolia) by any chance? I believe it won't suffer the same result as...

Scala 3 support seems to be work-in-progress: https://github.com/propensive/magnolia/pull/249.

I haven't looked at the [Magnolia tutorial](https://propensive.com/opensource/magnolia/tutorial) too deeply but if I understand it correctly it's a matter of providing implementations for two methods `combine` and `dispatch`.

Here's an example: https://github.com/zio/zio-json/blob/develop/src/main/scala/zio/json/macros.scala

@erwan , no. The spec says: > The value of the scope parameter is expressed as a list of space-delimited, case-sensitive strings not a string with the scopes in it...

The plugin is here: [ https://github.com/RadoBuransky/sonar-scoverage-plugin](url) But sonar-scanner/runner does not recognise it.

That plugin is installed on the SonarQube server so obviously it is aware of it. When I run the Sonar Scanner/Runner it finds this plugin and pulls it down. However,...