https://github.com/Netflix/atlas
Raw File
Tip revision: 3ecef1ca6290da00b6f6f6dd3a86a1377694cbd6 authored by brharrington on 15 October 2020, 16:23:56 UTC
quote special double values for all json formats (#1213)
Tip revision: 3ecef1c
.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