Created
November 25, 2018 15:35
-
-
Save vixduong/304f608e7aec66f9d33092f89a7fcd80 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
style = defaultWithAlign | |
align=more | |
maxColumn = 120 | |
// http://scalameta.org/scalafmt/#align.openParenCallSite | |
align.openParenCallSite = true | |
align.openParenDefnSite = false | |
// http://scalameta.org/scalafmt/#align.arrowEnumeratorGenerator | |
align.arrowEnumeratorGenerator = true | |
danglingParentheses = true | |
// http://scalameta.org/scalafmt/#optIn.breakChainOnFirstMethodDot | |
optIn.breakChainOnFirstMethodDot = true | |
// http://scalameta.org/scalafmt/#lineEndings | |
lineEndings = unix | |
// http://scalameta.org/scalafmt/#newlines.penalizeSingleSelectMultiArgList | |
newlines.penalizeSingleSelectMultiArgList = true | |
project.git = true | |
// http://scalameta.org/scalafmt/#binPack.literalArgumentLists | |
binPack.literalArgumentLists = false | |
// http://scalameta.org/scalafmt/#runner.optimizer.forceConfigStyleOnOffset | |
runner.optimizer.forceConfigStyleMinArgCount = 3 | |
// http://scalameta.org/scalafmt/#RedundantBraces | |
rewrite.redundantBraces.maxLines = 100 | |
rewrite.redundantBraces.includeUnitMethods = true | |
rewrite.redundantBraces.stringInterpolation = true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment