Jentsch
Jentsch
At least as a workaround you could use: ``` sbt tutScalacOptions := { val testOptions = scalacOptions.in(test).value val unwantedOptions = Set("-Ywarn-unused-import", "-Xfatal-warnings") testOptions.filterNot(unwantedOptions) } ``` But maybe this is a...
Yes it's the REPL. I copied it from an other project, where I did the same for the console. [See AutoLifts Repl](https://github.com/wheaties/AutoLifts/pull/58/files#diff-877df953c36503c1a0bf7e1e2053137fR17)
Btw: why has tut its own `tutScalacOptions` and don't use something like `scalacOptions in tut`?
Hi *, I would like to contibute some code. Where should I place the pull request?
You could also normalize the result type multiplication based on the input parameter types. That would require some implicits, depend path and would make the code much more complicated. It...
Maybe not that relevant, but looked into the cases where Scala use not classes but tuples nowadays and found some cases where records could make code more readable. Assuming that...