Skip to content

Commit

Permalink
Reformat with scalafmt 3.8.5
Browse files Browse the repository at this point in the history
Executed command: scalafmt --non-interactive
  • Loading branch information
scala-steward committed Jan 18, 2025
1 parent 7bfe816 commit fd9dd4e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
8 changes: 3 additions & 5 deletions project/DocSettings.scala
Original file line number Diff line number Diff line change
Expand Up @@ -90,12 +90,11 @@ object DocSettings {
"apiNote:a:API Note:",
"-Xdoclint:none"
),
JavaUnidoc / unidoc / unidocAllSources := {
JavaUnidoc / unidoc / unidocAllSources :=
ignoreUndocumentedSources(
allSourceFiles = (JavaUnidoc / unidoc / unidocAllSources).value,
sourceFilePatternsToKeep = unidocSourceFilePatterns.value
)
},
),

// Settings for plain, old Java doc needed for successful doc generation during publishing.
Compile / doc / javacOptions ++= Seq(
Expand All @@ -116,12 +115,11 @@ object DocSettings {
"-doc-title",
fullDocTitle((projectToUpdate / name).value, version.value, isScalaDoc = true)
),
ScalaUnidoc / unidoc / unidocAllSources := {
ScalaUnidoc / unidoc / unidocAllSources :=
ignoreUndocumentedSources(
allSourceFiles = (ScalaUnidoc / unidoc / unidocAllSources).value,
sourceFilePatternsToKeep = unidocSourceFilePatterns.value
)
}
)

javaUnidocSettings ++ scalaUnidocSettings
Expand Down
3 changes: 1 addition & 2 deletions project/ProjectDependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import Versions.*
object ProjectDependencies {

lazy val dependencies: Seq[Setting[_]] = Seq(
libraryDependencies ++= {
libraryDependencies ++=
Seq(
"org.scala-lang.modules" %% "scala-collection-compat" % scalaCollectionCompat,
"com.fasterxml.jackson.core" % "jackson-databind" % jacksonVersion,
Expand All @@ -27,7 +27,6 @@ object ProjectDependencies {
case _ => Seq.empty
}
)
}
)

}
Expand Down

0 comments on commit fd9dd4e

Please sign in to comment.