https://github.com/Netflix/atlas
Raw File
Tip revision: 3e1aa52e4d9ccb8ddcdb80a39bdfae5df63afb6e authored by brharrington on 27 March 2020, 22:51:53 UTC
fix logic for skipNext (#1162)
Tip revision: 3e1aa52
.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