Skip to content

Commit

Permalink
Merge pull request #1335 from scala-steward/update/scalafmt-core-3.8.0
Browse files Browse the repository at this point in the history
Update scalafmt-core to 3.8.0
  • Loading branch information
SethTisue authored Feb 20, 2024
2 parents c4f4ec0 + 16cd290 commit ba60965
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 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.8.0
c7afd84c5921949600cd336bbc72acbb41d2342b
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = 3.7.17
version = 3.8.0
runner.dialect = scala212

project.git = true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,12 @@ class IncHandler(directory: Path, cacheDir: Path, scriptedLog: ManagedLogger, co
toCache
}
val analyzingCompiler = scalaCompiler(si, compilerBridge)
val cs = incrementalCompiler.compilers(si, ClasspathOptionsUtil.noboot(si.version), None, analyzingCompiler)
val cs = incrementalCompiler.compilers(
si,
ClasspathOptionsUtil.noboot(si.version),
None,
analyzingCompiler
)
IncState(si, cs, 0)
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
package naha

object ClientWithImplicitUsed {
def add(nr: Any)(implicit no: ImplicitWrapper[_]) = nr.toString + no.a.toString
def add(nr: Any)(implicit no: ImplicitWrapper[?]) = nr.toString + no.a.toString

val vals: Seq[Any] = Seq(NormalDependecy.implicitMember, NormalDependecy.standardMember)

Expand Down

0 comments on commit ba60965

Please sign in to comment.