Skip to content

Commit 19e6fba

Browse files
Update scalafmt-core to 3.8.6 (#153)
* Update scalafmt-core to 3.8.6 * Reformat with scalafmt 3.8.6 Executed command: scalafmt --non-interactive * Add 'Reformat with scalafmt 3.8.6' to .git-blame-ignore-revs
1 parent a0ece1a commit 19e6fba

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

.git-blame-ignore-revs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Scala Steward: Reformat with scalafmt 3.8.6
2+
7500ed15d9d50a19828222fc9a521c84d7d8b2e1

.scalafmt.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version = 3.8.3
1+
version = 3.8.6
22
runner.dialect = scala213
33
project.git = true
44
maxColumn = 98

project/DocSettings.scala

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -90,12 +90,11 @@ object DocSettings {
9090
"apiNote:a:API Note:",
9191
"-Xdoclint:none"
9292
),
93-
JavaUnidoc / unidoc / unidocAllSources := {
93+
JavaUnidoc / unidoc / unidocAllSources :=
9494
ignoreUndocumentedSources(
9595
allSourceFiles = (JavaUnidoc / unidoc / unidocAllSources).value,
9696
sourceFilePatternsToKeep = unidocSourceFilePatterns.value
97-
)
98-
},
97+
),
9998

10099
// Settings for plain, old Java doc needed for successful doc generation during publishing.
101100
Compile / doc / javacOptions ++= Seq(
@@ -116,12 +115,11 @@ object DocSettings {
116115
"-doc-title",
117116
fullDocTitle((projectToUpdate / name).value, version.value, isScalaDoc = true)
118117
),
119-
ScalaUnidoc / unidoc / unidocAllSources := {
118+
ScalaUnidoc / unidoc / unidocAllSources :=
120119
ignoreUndocumentedSources(
121120
allSourceFiles = (ScalaUnidoc / unidoc / unidocAllSources).value,
122121
sourceFilePatternsToKeep = unidocSourceFilePatterns.value
123122
)
124-
}
125123
)
126124

127125
javaUnidocSettings ++ scalaUnidocSettings

project/ProjectDependencies.scala

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import Versions.*
77
object ProjectDependencies {
88

99
lazy val dependencies: Seq[Setting[_]] = Seq(
10-
libraryDependencies ++= {
10+
libraryDependencies ++=
1111
Seq(
1212
"org.scala-lang.modules" %% "scala-collection-compat" % scalaCollectionCompat,
1313
"com.fasterxml.jackson.core" % "jackson-databind" % jacksonVersion,
@@ -27,7 +27,6 @@ object ProjectDependencies {
2727
case _ => Seq.empty
2828
}
2929
)
30-
}
3130
)
3231

3332
}

0 commit comments

Comments
 (0)