Results 133 comments of Jacob Wang

StringPlusAny doesn't seem to complain about the following when it should. ``` case class Foo(i: Int) val v = s"hello ${Foo(3)}" ```

Drive-by idea: What if we start with a `POST /direct` endpoint that just takes an array of string as the body, and then interpret it as if it's a CLI...

Ah yeah true, getting the output in a structured format is crucial for nice UI

Interesting idea! How about a sealed trait of `ReadOnly/WriteOnly/ReadWrite`? With them being case objects it'll work too right? I can take a stab at this if you want?

Something like this? ``` object ShowDerivation { val typeclassAccess = TypeclassAccess.ReadOnly type Typeclass[T] = Show[T] def combine[T](ctx: CaseClass[Show, T]): Show[T] = ... // etc } ```

Thanks @hseeberger. CI is failing - does `sbt scripted` tests pass for you locally?

Can confirm that this is still an issue on 0.10.0-RC1

Hi @ryan-williams this looks super nice! Would you be able to resolve the conflicts and I can merge this in after reviewing it again :)

It shouldn't (and runs per project for me when I scope it). Can you provide a repo to reproduce the issue?

Yeah I did try doing this when adding first-class PostgreSQL java.time support but observed the same thing you did. I think we could switch to use getColumnTypeName, but I think...