Skip to content

Commit

Permalink
Update scalafmt-core to 3.7.12 (#392)
Browse files Browse the repository at this point in the history
* Update scalafmt-core to 3.7.12

* Reformat with scalafmt 3.7.12

Executed command: scalafmt --non-interactive

* Add 'Reformat with scalafmt 3.7.12' to .git-blame-ignore-revs
  • Loading branch information
scala-steward authored Aug 14, 2023
1 parent 3fe9d28 commit 64e897a
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 12 deletions.
2 changes: 2 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Scala Steward: Reformat with scalafmt 3.7.12
ef0b6307357101909d3a58213d44dbad8a6c43c7
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
runner.dialect = scala213
version=3.7.3
version=3.7.12
maxColumn = 120
rewrite.rules = [AvoidInfix]
6 changes: 3 additions & 3 deletions core-tests/build.sbt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name := "overflowdb-core-tests"

publish/skip := true
publish / skip := true

libraryDependencies ++= Seq(
"com.github.sbt" % "junit-interface" % "0.13.3" % Test,
"com.github.sbt" % "junit-interface" % "0.13.3" % Test
)

Test/testOptions += Tests.Argument(TestFrameworks.JUnit, "-a", "-v")
Test / testOptions += Tests.Argument(TestFrameworks.JUnit, "-a", "-v")
2 changes: 1 addition & 1 deletion formats/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ libraryDependencies ++= Seq(
"io.spray" %% "spray-json" % "1.3.6"
)

Test/console/scalacOptions -= "-Xlint"
Test / console / scalacOptions -= "-Xlint"
2 changes: 1 addition & 1 deletion testdomains/build.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
name := "testdomains"

publish/skip := true
publish / skip := true
4 changes: 2 additions & 2 deletions traversal-tests/build.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name := "overflowdb-traversal-tests"

publish/skip := true
publish / skip := true

Test/console/scalacOptions -= "-Xlint"
Test / console / scalacOptions -= "-Xlint"
2 changes: 1 addition & 1 deletion traversal/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ name := "overflowdb-traversal"

libraryDependencies ++= Seq(
"net.oneandone.reflections8" % "reflections8" % "0.11.7", // go back to reflections once 0.9.13 is released
"com.massisframework" % "j-text-utils" % "0.3.4",
"com.massisframework" % "j-text-utils" % "0.3.4"
)
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ import scala.jdk.CollectionConverters._
* There are two use cases for this, which require slightly different implementations 1) `myDomain.help` - for the node
* starter steps 2) `myDomain.someNodeType.help` - for steps that are available a specific node type
*
* For use case 2, we also take into account all parent traits of a node type, recursively.
* I.e. if `SomeNodeType` has a base type `SomeBaseType`, and there are steps defined for `Traversal[SomeBaseType]`, we
* will include those in the results.
* For use case 2, we also take into account all parent traits of a node type, recursively. I.e. if `SomeNodeType` has
* a base type `SomeBaseType`, and there are steps defined for `Traversal[SomeBaseType]`, we will include those in the
* results.
*
* @param searchPackages:
* The base packages that we scan for - we're not scanning the entire classpath
Expand Down

0 comments on commit 64e897a

Please sign in to comment.