[sbt] Add cats-effect recommended scalaOptions

This commit is contained in:
Paul Campbell 2019-05-05 19:28:52 +01:00
parent 88d42e2130
commit 9f7cb86c51

View file

@ -7,3 +7,11 @@ scalaVersion := "2.12.8"
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.7" % "test"
libraryDependencies += "org.typelevel" %% "cats-effect" % "1.3.0" withSources() withJavadoc()
scalacOptions ++= Seq(
"-feature",
"-deprecation",
"-unchecked",
"-language:postfixOps",
"-language:higherKinds",
"-Ypartial-unification")