diff --git a/.scalafmt.conf b/.scalafmt.conf index 31783fa..1b8a53c 100644 --- a/.scalafmt.conf +++ b/.scalafmt.conf @@ -1,4 +1,4 @@ -version = 3.0.2 +version = 3.0.3 style = defaultWithAlign danglingParentheses.preset = true indentOperator.preset = spray diff --git a/build.sbt b/build.sbt index 7fe57ac..724bc71 100644 --- a/build.sbt +++ b/build.sbt @@ -9,8 +9,8 @@ def crossScalacOptions(scalaVersion: String): Seq[String] = CrossVersion.partial lazy val baseSettings = Seq( organization := "com.github.j5ik2o", - homepage := Some(url("https://github.com/j5ik2o/sw4jj")), - licenses := List("The MIT License" -> url("http://opensource.org/licenses/MIT")), + homepage := Some(url("https://github.com/j5ik2o/sw4jj")), + licenses := List("The MIT License" -> url("http://opensource.org/licenses/MIT")), developers := List( Developer( id = "j5ik2o", @@ -19,7 +19,7 @@ lazy val baseSettings = Seq( url = url("https://blog.j5ik2o.me") ) ), - scalaVersion := Versions.scala211Version, + scalaVersion := Versions.scala211Version, crossScalaVersions := Seq(Versions.scala211Version, Versions.scala212Version, Versions.scala213Version), scalacOptions ++= (Seq( "-feature", @@ -37,11 +37,11 @@ lazy val baseSettings = Seq( scalatest.scalatest % Test ), ThisBuild / scalafixScalaBinaryVersion := CrossVersion.binaryScalaVersion(scalaVersion.value), - semanticdbEnabled := true, - semanticdbVersion := scalafixSemanticdb.revision, - Test / publishArtifact := false, - Test / fork := true, - Test / parallelExecution := false + semanticdbEnabled := true, + semanticdbVersion := scalafixSemanticdb.revision, + Test / publishArtifact := false, + Test / fork := true, + Test / parallelExecution := false ) val root = (project in file("."))