Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
3 changes: 3 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,6 @@

# Scala Steward: Reformat with scalafmt 3.10.3
d8af028d2cd271ab7f3adec9842f07cce86a2ac3

# Scala Steward: Reformat with scalafmt 3.10.4
82a5c6c9d8dc2bcdee62660e9a4cd2424fda063e
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = 3.10.3
version = 3.10.4
project.layout = StandardConvention
runner.dialect = scala3
maxColumn = 100
Expand Down
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
Loading