Revision f096a1879230db5319703eb284dc7c9972a53030 authored by brharrington on 05 May 2020, 16:15:14 UTC, committed by GitHub on 05 May 2020, 16:15:14 UTC
OpenJDK14 has changes to font rendering that make it
compatible with the lastest Zulu JDK11 we use internally.
1 parent 6b426a2
Raw File
.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