Last active
February 12, 2020 03:24
-
-
Save isuzuki/7935f4828ada4f8eefee3fa8f6b132fe to your computer and use it in GitHub Desktop.
scalafmt config(@see # https://scalameta.org/scalafmt/docs/configuration.html)
This file contains hidden or 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
// @see https://scalameta.org/scalafmt/docs/configuration.html | |
version = 2.3.2 | |
align.openParenCallSite = true | |
align.openParenDefnSite = true | |
maxColumn = 120 | |
continuationIndent.defnSite = 2 | |
assumeStandardLibraryStripMargin = true | |
danglingParentheses = true | |
rewrite.rules = [AvoidInfix, SortImports, RedundantBraces, RedundantParens, SortModifiers] | |
docstrings = JavaDoc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment