https://github.com/Netflix/atlas
Raw File
Tip revision: 6ce80aff45b6ce6186b4535579f8b438f6f15666 authored by brharrington on 17 May 2023, 00:15:34 UTC
add spring-lwc-events project to aggregate (#1554)
Tip revision: 6ce80af
.scalafmt.conf
version = 3.5.9
runner.dialect = scala213

style = defaultWithAlign

align.openParenCallSite = false
align.openParenDefnSite = false
align.tokens = [{code = "->"}, {code = "<-"}, {code = "=>", owner = "Case"}]

continuationIndent.callSite = 2
continuationIndent.defnSite = 2

danglingParentheses.preset = true

docstrings.style = keep

indentOperator = spray
indentOperator.excludeRegex = "^(&&|\\|\\||~)$"
indentOperator.exemptScope = all

literals.hexDigits = Upper

maxColumn = 100

newlines.afterCurlyLambdaParams = keep
newlines.beforeCurlyLambdaParams = multilineWithCaseOnly
newlines.inInterpolation = oneline
newlines.topLevelBodyIfMinStatements = [before]
newlines.topLevelStatementBlankLines = [
  { blanks { before = 1, after = 0 } }
]

project.excludeFilters = [".*\\.sbt"]

rewrite.rules = [RedundantParens, ExpandImportSelectors, AvoidInfix]

spaces.inImportCurlyBraces = false
back to top