-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathbuild.sbt
More file actions
executable file
·52 lines (48 loc) · 1.31 KB
/
build.sbt
File metadata and controls
executable file
·52 lines (48 loc) · 1.31 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name := "scalashogi"
version := "13.2.1"
ThisBuild / scalaVersion := "2.13.18"
libraryDependencies ++= List(
"org.scala-lang.modules" %% "scala-parser-combinators" % "1.1.2",
"org.typelevel" %% "cats-core" % "2.13.0",
"joda-time" % "joda-time" % "2.14.1",
"org.specs2" %% "specs2-core" % "4.23.0" % Test,
"org.specs2" %% "specs2-cats" % "4.23.0" % Test,
)
scalacOptions ++= Seq(
"-encoding",
"utf-8",
"-explaintypes",
"-feature",
"-language:higherKinds",
"-language:implicitConversions",
"-language:postfixOps",
"-Ymacro-annotations",
"-unchecked",
"-Xcheckinit",
// Linting options
"-Xlint:adapted-args",
"-Xlint:constant",
"-Xlint:delayedinit-select",
"-Xlint:deprecation",
"-Xlint:inaccessible",
"-Xlint:infer-any",
"-Xlint:missing-interpolator",
"-Xlint:nullary-unit",
"-Xlint:option-implicit",
"-Xlint:package-object-classes",
"-Xlint:poly-implicit-overload",
"-Xlint:private-shadow",
"-Xlint:stars-align",
"-Xlint:type-parameter-shadow",
"-Wdead-code",
"-Wextra-implicit",
"-Wnumeric-widen",
"-Wunused:imports",
"-Wunused:locals",
"-Wunused:patvars",
"-Wunused:privates",
"-Wunused:implicits",
"-Wunused:params",
"-Wvalue-discard",
"-Werror",
)