Skip to content

Commit 2c1c0ac

Browse files
authored
Merge pull request #557 from scala-steward/update/scalafmt-core-3.9.8
scalafmt-core 3.9.8 (was 3.8.6)
2 parents ea48df7 + a37a628 commit 2c1c0ac

File tree

6 files changed

+8
-5
lines changed

6 files changed

+8
-5
lines changed

.git-blame-ignore-revs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,6 @@
22
7fe92e05b8508927343db11bd4c6bbbd723253c1
33
# Enable Java formatter
44
367b1e5662a20cda35df21d715bd76d1bf4d2324
5+
6+
# Scala Steward: Reformat with scalafmt 3.9.8
7+
aa32f0df6ba6661a2f8620c10a15c66dddc23354

.scalafmt.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ spaces.inImportCurlyBraces = true # more idiomatic to include whitepsace in im
1010
trailingCommas = preserve
1111
newlines.afterCurlyLambda = preserve
1212
runner.dialect = scala212source3
13-
version = 3.8.6
13+
version = 3.9.8

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def enhanceEbeanClasses(
104104
// Ebean (really hacky sorry)
105105
val cp = classpath.map(_.data.toURI.toURL).toArray :+ classDirectory.toURI.toURL
106106
val cl = new java.net.URLClassLoader(cp)
107-
val t = cl
107+
val t = cl
108108
.loadClass("io.ebean.enhance.Transformer")
109109
.getConstructor(classOf[ClassLoader], classOf[String])
110110
.newInstance(cl, "debug=0")

docs/.scalafmt.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ spaces.inImportCurlyBraces = true # more idiomatic to include whitepsace in im
1313
trailingCommas = preserve
1414
newlines.afterCurlyLambda = preserve
1515
runner.dialect = scala212source3
16-
version = 3.8.6
16+
version = 3.9.8

project/Common.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ object Common extends AutoPlugin {
3333
licenses := Seq("Apache-2.0" -> url("https://www.apache.org/licenses/LICENSE-2.0.html")),
3434
// on the web
3535
homepage := Some(url(s"https://github.com/playframework/$repoName")),
36-
scmInfo := Some(
36+
scmInfo := Some(
3737
ScmInfo(
3838
url(s"https://github.com/playframework/$repoName"),
3939
s"scm:git:[email protected]:playframework/$repoName.git"

sbt-play-ebean/src/main/scala/play/ebean/sbt/PlayEbean.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import scala.util.control.NonFatal
2828
object PlayEbean extends AutoPlugin {
2929

3030
object autoImport {
31-
val playEbeanModels = taskKey[Seq[String]]("The packages that should be searched for ebean models to enhance.")
31+
val playEbeanModels = taskKey[Seq[String]]("The packages that should be searched for ebean models to enhance.")
3232
val playEbeanVersion =
3333
settingKey[String]("The version of Play ebean that should be added to the library dependencies.")
3434
val playEbeanDebugLevel = settingKey[Int](

0 commit comments

Comments
 (0)