From cf1f65612a205f554c538f0d8542c1b845881213 Mon Sep 17 00:00:00 2001 From: Dale Wijnand Date: Tue, 3 Oct 2017 16:16:09 +0100 Subject: [PATCH] Don't align args or params by the opening parens --- .scalafmt.conf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.scalafmt.conf b/.scalafmt.conf index e4ab36511..2486945d0 100644 --- a/.scalafmt.conf +++ b/.scalafmt.conf @@ -8,3 +8,8 @@ docstrings = JavaDoc # This also seems more idiomatic to include whitespace in import x.{ yyy } spaces.inImportCurlyBraces = true + +# This is more idiomatic Scala. +# http://docs.scala-lang.org/style/indentation.html#methods-with-numerous-arguments +align.openParenCallSite = false +align.openParenDefnSite = false