From 8682bafc0d01e32a30eb687bbe16d28494244d45 Mon Sep 17 00:00:00 2001 From: Orlando Vargas Date: Thu, 22 Sep 2022 19:26:01 -0500 Subject: [PATCH] Updated formatting configuration --- montecarlo_archery/.scalafmt.conf | 3 ++- montecarlo_archery/build.sbt | 8 ++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/montecarlo_archery/.scalafmt.conf b/montecarlo_archery/.scalafmt.conf index 88410d1..946ba15 100644 --- a/montecarlo_archery/.scalafmt.conf +++ b/montecarlo_archery/.scalafmt.conf @@ -1,2 +1,3 @@ -version = "3.5.3" +version = "3.5.8" runner.dialect = scala3 +maxColumn = 120 diff --git a/montecarlo_archery/build.sbt b/montecarlo_archery/build.sbt index 349d564..1d81092 100644 --- a/montecarlo_archery/build.sbt +++ b/montecarlo_archery/build.sbt @@ -3,11 +3,11 @@ val scala3Version = "3.2.0" lazy val root = project .in(file(".")) .settings( - name := "montecarlo_archery", - version := "0.1.0-SNAPSHOT", + name := "montecarlo_archery", + version := "0.1.0-SNAPSHOT", scalaVersion := scala3Version, libraryDependencies ++= Seq( - "org.scalameta" %% "munit" % "0.7.29" % Test, - "org.scalanlp" %% "breeze" % "2.1.0" + "org.scalameta" %% "munit" % "0.7.29" % Test, + "org.scalanlp" %% "breeze" % "2.1.0" ) )