aboutsummaryrefslogblamecommitdiff
path: root/.scalafmt
blob: ba1bf4f7cc11b0d09382b8a5c32163b4b5dc5157 (plain) (tree)





















                                                                            
# scalafmt sbt plugin config
# refer to https://olafurpg.github.io/scalafmt/#Configuration for properties

--style defaultWithAlign # For pretty alignment.
--maxColumn 120          # For my wide 30" display.

--reformatDocstrings true
--scalaDocs

--continuationIndentCallSite 4
--continuationIndentDefnSite 4

--rewriteTokens ⇒;=>,←;<-
--danglingParentheses false
--spaceAfterTripleEquals true
--alignByArrowEnumeratorGenerator true
--binPackParentConstructors true
--allowNewlineBeforeColonInMassiveReturnTypes true
--spacesInImportCurlyBraces false

# --alignByOpenParenCallSite <value>
# --alignByOpenParenDefnSite <value>