[sbt] Add cats-effect recommended scalaOptions
This commit is contained in:
parent
88d42e2130
commit
9f7cb86c51
1 changed files with 8 additions and 0 deletions
|
@ -7,3 +7,11 @@ scalaVersion := "2.12.8"
|
||||||
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.7" % "test"
|
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.7" % "test"
|
||||||
libraryDependencies += "org.typelevel" %% "cats-effect" % "1.3.0" withSources() withJavadoc()
|
libraryDependencies += "org.typelevel" %% "cats-effect" % "1.3.0" withSources() withJavadoc()
|
||||||
|
|
||||||
|
scalacOptions ++= Seq(
|
||||||
|
"-feature",
|
||||||
|
"-deprecation",
|
||||||
|
"-unchecked",
|
||||||
|
"-language:postfixOps",
|
||||||
|
"-language:higherKinds",
|
||||||
|
"-Ypartial-unification")
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue