Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Reformat with scalafmt 3.10.4
Executed command: scalafmt --non-interactive
  • Loading branch information
scala-steward committed Jan 17, 2026
commit 82a5c6c9d8dc2bcdee62660e9a4cd2424fda063e
6 changes: 2 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,8 @@ val buildSettings = Seq[Setting[?]](
// Style check config: (sbt-jchekcstyle)
jcheckStyleConfig := "facebook",
// Run jcheckstyle both for main and test codes
Compile / compile :=
((Compile / compile) dependsOn (Compile / jcheckStyle)).value,
Test / compile :=
((Test / compile) dependsOn (Test / jcheckStyle)).value
Compile / compile := ((Compile / compile) dependsOn (Compile / jcheckStyle)).value,
Test / compile := ((Test / compile) dependsOn (Test / jcheckStyle)).value
)

val junitJupiter = "org.junit.jupiter" % "junit-jupiter" % "5.14.1" % "test"
Expand Down