https://github.com/Netflix/atlas
Revision 1ee176fa101b18fdfe8d8cc0e0f29b964efc2ee6 authored by brharrington on 11 February 2020, 17:22:15 UTC, committed by GitHub on 11 February 2020, 17:22:15 UTC
Set the default serialization to use millisecond timestamps.
This keeps it more consistent with other usage in Atlas.
1 parent 0d5876d
Raw File
Tip revision: 1ee176fa101b18fdfe8d8cc0e0f29b964efc2ee6 authored by brharrington on 11 February 2020, 17:22:15 UTC
adjust default serialization for java.time (#1144)
Tip revision: 1ee176f
.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