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.3 #204

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
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
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.3
ec63daed4dbd62c2d3a61cc85737db67d23ca96c
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "3.5.9"
version = "3.8.3"
runner.dialect = scala3
rewrite.scala3.insertEndMarkerMinLines = 50
maxColumn = 140
Expand Down
6 changes: 5 additions & 1 deletion plugin/src/main/scala-3/BetterToStringPlugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,11 @@ final class BetterToStringPluginPhase extends PluginPhase:
override val phaseName: String = "better-tostring-phase"
override val runsAfter: Set[String] = Set(org.polyvariant.AfterPhase.name)

override def transformTemplate(t: Template)(using ctx: Context): Tree =
override def transformTemplate(
t: Template
)(
using ctx: Context
): Tree =
val clazz = ctx.owner.asClass

val ownerOwner = ctx.owner.owner
Expand Down
4 changes: 3 additions & 1 deletion plugin/src/main/scala-3/Scala3CompilerApi.scala
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ object Scala3CompilerApi:
final case class ClassContext(t: Template, clazz: ClassSymbol):
def mapTemplate(f: Template => Template): ClassContext = copy(t = f(t))

def instance(using Context): Scala3CompilerApi = new Scala3CompilerApi:
def instance(
using Context
): Scala3CompilerApi = new Scala3CompilerApi:

def params(clazz: Clazz): List[Param] =
clazz.t.body.collect {
Expand Down
Loading