This is an automated email from the ASF dual-hosted git repository. fanningpj pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/incubator-pekko-persistence-cassandra.git
commit a3b78b8b5855e38d53dc682a5e99bbd3e36c36fb Author: Matthew de Detrich <[email protected]> AuthorDate: Sat Nov 12 07:38:56 2022 +0100 Update scalafmt --- .scalafmt.conf | 58 ++++++++++++++++++++++++++++++++++++----------------- project/plugins.sbt | 2 +- 2 files changed, 41 insertions(+), 19 deletions(-) diff --git a/.scalafmt.conf b/.scalafmt.conf index f1c9cfd..2ca4ece 100644 --- a/.scalafmt.conf +++ b/.scalafmt.conf @@ -1,20 +1,40 @@ -version = 2.1.0 - -style = defaultWithAlign - -docstrings = JavaDoc -indentOperator = spray -maxColumn = 120 -rewrite.rules = [RedundantParens, SortImports, AvoidInfix] -unindentTopLevelOperators = true -align.tokens = [{code = "=>", owner = "Case"}] -align.openParenDefnSite = false -align.openParenCallSite = false -optIn.breakChainOnFirstMethodDot = false -optIn.configStyleArguments = false -danglingParentheses = false -spaces.inImportCurlyBraces = true -rewrite.neverInfix.excludeFilters = [ +version = 3.6.1 +runner.dialect = scala213 +project.git = true +style = defaultWithAlign +docstrings.style = Asterisk +docstrings.wrap = false +indentOperator.preset = spray +maxColumn = 120 +lineEndings = preserve +rewrite.rules = [RedundantParens, SortImports, AvoidInfix] +indentOperator.exemptScope = all +align.preset = some +align.tokens."+" = [ + { + code = "~>" + owners = [ + { regex = "Term.ApplyInfix" } + ] + } +] +literals.hexDigits = upper +literals.hexPrefix = lower +binPack.unsafeCallSite = always +binPack.unsafeDefnSite = always +binPack.indentCallSiteSingleArg = false +binPack.indentCallSiteOnce = true +newlines.avoidForSimpleOverflow = [slc] +newlines.source = keep +newlines.beforeMultiline = keep +align.openParenDefnSite = false +align.openParenCallSite = false +align.allowOverflow = true +optIn.breakChainOnFirstMethodDot = false +optIn.configStyleArguments = false +danglingParentheses.preset = false +spaces.inImportCurlyBraces = true +rewrite.neverInfix.excludeFilters = [ and min max @@ -44,9 +64,11 @@ rewrite.neverInfix.excludeFilters = [ allElementsOf inOrderElementsOf theSameElementsAs + theSameElementsInOrderAs ] -rewriteTokens = { +rewriteTokens = { "⇒": "=>" "→": "->" "←": "<-" } +project.layout = StandardConvention diff --git a/project/plugins.sbt b/project/plugins.sbt index 2d34441..7af20b4 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,5 +1,5 @@ addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.6.5") -addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.3.1") +addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.6") addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.10") addSbtPlugin("com.typesafe.sbt" % "sbt-multi-jvm" % "0.4.0") addSbtPlugin("com.dwijnand" % "sbt-dynver" % "4.1.1") --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
