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 @@

# scalafmt
0ad886c35bdf9c8ad2bfb0501070b8b2ce810710

# Scala Steward: Reformat with scalafmt 3.8.6
2ce014f614c40347f2c766cf06c8bf52d8b2e883
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "3.8.1"
version = "3.8.6"

runner.dialect = scala213

Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ lazy val render = crossProject(JVMPlatform, JSPlatform)
val shadeUnder = "plotly.internals.shaded"
val shadeNamespaces = Seq("argonaut", "macrocompat", "shapeless")
for (ns <- shadeNamespaces)
yield ShadingRule.moveUnder(ns, shadeUnder),
yield ShadingRule.moveUnder(ns, shadeUnder)
},
validNamespaces += "plotly",
libraryDependencies ++= Seq(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ object ArgonautCodecsInternals extends ArgonautCodecsExtra {
): DecodeJson[W] =
DecodeJson { c =>
c.as[T]
.map(t => gen.from((t :: HNil).asInstanceOf[L]) // FIXME
.map(t =>
gen.from((t :: HNil).asInstanceOf[L]) // FIXME
)
}

Expand Down
Loading