Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update scalafmt-core to 3.8.0 #1335

Merged
merged 3 commits into from
Feb 20, 2024
Merged
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
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