https://github.com/Netflix/atlas
Raw File
Tip revision: 2b0996e2c549d6becfdb0b54edfdd79324d8623c authored by brharrington on 13 June 2019, 17:38:02 UTC
fix build settings for 2.13 to use `-release 8` (#1055)
Tip revision: 2b0996e
.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