https://github.com/Netflix/atlas
Raw File
Tip revision: 589a954393acf4431ad1620b5063155f8935e97d authored by brharrington on 19 September 2017, 00:02:28 UTC
sbt 1.0.2 (#686)
Tip revision: 589a954
.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