Skip to content

Commit 9053d4d

Browse files
committed
Scalafmt
1 parent 3bd7467 commit 9053d4d

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

build.sbt

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,12 +97,15 @@ lazy val core = crossProject(JVMPlatform, JSPlatform)
9797
.settings(
9898
name := "scodec-bits",
9999
libraryDependencies ++= Seq(
100-
"org.scalatest" %%% "scalatest" % "3.1.1" % "test",
101-
("org.scalatestplus" %%% "scalacheck-1-14" % "3.1.1.1" % "test").intransitive().withDottyCompat(scalaVersion.value),
102-
("org.scalacheck" %%% "scalacheck" % "1.14.3" % "test").withDottyCompat(scalaVersion.value)
100+
"org.scalatest" %%% "scalatest" % "3.1.1" % "test",
101+
("org.scalatestplus" %%% "scalacheck-1-14" % "3.1.1.1" % "test")
102+
.intransitive()
103+
.withDottyCompat(scalaVersion.value),
104+
("org.scalacheck" %%% "scalacheck" % "1.14.3" % "test").withDottyCompat(scalaVersion.value)
103105
),
104106
libraryDependencies ++= {
105-
if (isDotty.value) Nil else Seq("org.scala-lang" % "scala-reflect" % scalaVersion.value % "provided")
107+
if (isDotty.value) Nil
108+
else Seq("org.scala-lang" % "scala-reflect" % scalaVersion.value % "provided")
106109
},
107110
autoAPIMappings := true,
108111
buildInfoPackage := "scodec.bits",

0 commit comments

Comments
 (0)