Here is my build.sc
file:
import mill._
import $ivy.`com.lihaoyi::mill-contrib-playlib:$MILL_VERSION`, mill.playlib._
object core extends PlayModule {
//config
override def scalaVersion= T{"2.12.8"}
override def playVersion= T{"2.7.3"}
override def twirlVersion= T{"1.5.0"}
object test extends PlayTests
def forkEnv = Map("APPLICATION_SECRET" -> System.getenv("APPLICATION_SECRET"))
}
And here is the syntax highlighting in IntellijIdea:
As the screenshot shows, IntellijIdea does not recognize the ->
and the $ivy
import. How do I get it to do so?