https://github.com/Netflix/atlas
Raw File
Tip revision: 2c50898f0861f96011ae5704ecd3ec146417ba06 authored by brharrington on 01 September 2022, 11:56:16 UTC
1.6: fix shard lookup for Integer.MIN_VALUE (#1459)
Tip revision: 2c50898
.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