-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
38 lines (34 loc) · 887 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name := "interview"
version := "1.0"
scalaVersion := "2.12.8"
maxErrors := 3
libraryDependencies ++= Seq(
// Main
"org.scalaz" %% "scalaz-zio" % "0.6.1",
"org.scalatest" %% "scalatest" % "3.0.5" % "test"
)
scalacOptions := Seq(
"-Xlint",
"-feature",
"-deprecation",
"-explaintypes",
"-unchecked",
"-Xfuture",
"-encoding", "UTF-8",
"-language:higherKinds",
"-language:existentials",
"-Ypartial-unification",
//"-Xfatal-warnings",
"-Xlint:-infer-any,_",
"-Ywarn-value-discard",
"-Ywarn-numeric-widen",
"-Ywarn-extra-implicit",
"-Ywarn-unused:_",
"-Ywarn-inaccessible",
"-Ywarn-nullary-override",
"-Ywarn-nullary-unit",
"-opt:l:inline"
)
// Lint
scapegoatVersion in ThisBuild := "1.3.8"
scalaBinaryVersion in ThisBuild := "2.12"