Skip to content

Commit

Permalink
Update scalafmt-core to 3.8.3 (#235)
Browse files Browse the repository at this point in the history
Co-authored-by: ptrdom-scala-steward[bot] <157643620+ptrdom-scala-steward[bot]@users.noreply.github.com>
  • Loading branch information
ptrdom-scala-steward[bot] authored Jul 25, 2024
1 parent 84f3f6b commit 0b6fbd0
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 4 deletions.
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 @@ b6632bdd20cd3ed2e2605571611b4f9d6a43cba9

# Scala Steward: Reformat with scalafmt 3.7.15
1dc6922752d153eca83d1645dcdaa6aba0bc3745

# Scala Steward: Reformat with scalafmt 3.8.3
76d41b5c48a4b0ebaaa0de170d4b8e16a55ece20
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
version = 3.8.2
version = 3.8.3
runner.dialect=scala212source3
lineEndings=preserve
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,10 @@ InputKey[Unit]("html") := {
"--disable-dev-shm-usage",
"--headless"
)
sys.env.get("E2E_TEST_BROWSER").map(_.toLowerCase).getOrElse("chrome") match {
sys.env
.get("E2E_TEST_BROWSER")
.map(_.toLowerCase)
.getOrElse("chrome") match {
case "chrome" =>
val options = new ChromeOptions
options.addArguments(arguments: _*)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,10 @@ InputKey[Unit]("html") := {
"--disable-dev-shm-usage",
"--headless"
)
sys.env.get("E2E_TEST_BROWSER").map(_.toLowerCase).getOrElse("chrome") match {
sys.env
.get("E2E_TEST_BROWSER")
.map(_.toLowerCase)
.getOrElse("chrome") match {
case "chrome" =>
val options = new ChromeOptions
options.addArguments(arguments: _*)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@ InputKey[Unit]("html") := {
"--disable-dev-shm-usage",
"--headless"
)
sys.env.get("E2E_TEST_BROWSER").map(_.toLowerCase).getOrElse("chrome") match {
sys.env
.get("E2E_TEST_BROWSER")
.map(_.toLowerCase)
.getOrElse("chrome") match {
case "chrome" =>
val options = new ChromeOptions
options.addArguments(arguments: _*)
Expand Down

0 comments on commit 0b6fbd0

Please sign in to comment.