Skip to content

Commit 0ca7538

Browse files
Update scalafmt-core to 3.8.5 (#662)
* Update scalafmt-core to 3.8.5 * Reformat with scalafmt 3.8.5 Executed command: scalafmt --non-interactive * Add 'Reformat with scalafmt 3.8.5' to .git-blame-ignore-revs
1 parent b16cc8f commit 0ca7538

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.git-blame-ignore-revs

+3
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,6 @@
44
#
55
# Added scallafix and scalafmt
66
03aeb373675b76d3fd021854fda776aafef07bd7
7+
8+
# Scala Steward: Reformat with scalafmt 3.8.5
9+
6c5f5c6d874d7c9e15bfc78f3c847829297fb8ae

.scalafmt.conf

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version = "3.8.3"
1+
version = "3.8.5"
22
project.git = true
33
runner.dialect = "scala213"
44
assumeStandardLibraryStripMargin = true

reporter/src/main/scala/scoverage/reporter/ScoverageHtmlWriter.scala

+4-2
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,8 @@ class ScoverageHtmlWriter(
383383
{
384384
coverage
385385
.risks(limit)
386-
.map(klass => <tr>
386+
.map(klass =>
387+
<tr>
387388
<td>
388389
{klass.displayClassName}
389390
</td>
@@ -407,7 +408,8 @@ class ScoverageHtmlWriter(
407408
{klass.branchCoverageFormatted}
408409
%
409410
</td>
410-
</tr>)
411+
</tr>
412+
)
411413
}
412414
</tbody>
413415
</table>

0 commit comments

Comments
 (0)