You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+23
Original file line number
Diff line number
Diff line change
@@ -48,6 +48,29 @@ is sticky. To turn it back off when you're done running reports, use the
48
48
`coverageOff` command or reset `coverageEnabled` with `set coverageEnabled :=
49
49
false`.
50
50
51
+
### Usage with Scala 3
52
+
53
+
In Scala 3, the compiler itself takes care of the work that was done in Scala 2 by a compiler plugin. Unfortunately, currently the sbt plugin doesn't apply the neccessary options automatically.
54
+
However, you can easily do it yourself, and use the plugin to generate user-friendly reports.
55
+
56
+
1. Add the scoverage sbt plugin by appending this line to your `project/plugins.sbt`
0 commit comments