https://github.com/Netflix/atlas
Raw File
Tip revision: 8c92e94476e66411de324cf4f723db1347f2930c authored by brharrington on 24 May 2022, 17:15:05 UTC
fix `:cg` with non-grouped math aggregate (#1445)
Tip revision: 8c92e94
.scalafmt.conf
version = 2.3.2

style = defaultWithAlign

align.openParenCallSite = false
align.openParenDefnSite = false
align.tokens = [{code = "->"}, {code = "<-"}, {code = "=>", owner = "Case"}]
continuationIndent.callSite = 2
continuationIndent.defnSite = 2
danglingParentheses = true
indentOperator = spray
maxColumn = 100
newlines.alwaysBeforeTopLevelStatements = true
project.excludeFilters = [".*\\.sbt"]
rewrite.rules = [RedundantParens, ExpandImportSelectors, AvoidInfix]
spaces.inImportCurlyBraces = false
unindentTopLevelOperators = true
back to top