https://github.com/Netflix/atlas
Raw File
Tip revision: a9b28212f929b4766f46574d9f09085a7ce9c057 authored by brharrington on 13 June 2019, 15:44:32 UTC
1.6: update to scala 2.13.0 final (#1053)
Tip revision: a9b2821
.scalafmt.conf
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