From 68af16c4f8d3e702d9aec1b30798345e2edce6cf Mon Sep 17 00:00:00 2001 From: Chris Kipp Date: Sun, 5 Sep 2021 22:02:30 +0200 Subject: [PATCH] Bump scalafmt to 3.0.3 Add in `docstrings.wrap = no` to ensure there isn't a bunch of wrapping in docstrings where we may not want it. Normally I'd want this, but it needlessly bumps the text down a line --- .scalafmt.conf | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.scalafmt.conf b/.scalafmt.conf index eb30fc05..c4d5e98c 100644 --- a/.scalafmt.conf +++ b/.scalafmt.conf @@ -1,4 +1,6 @@ -version = "2.7.5" +version = "3.0.3" project.git = true +runner.dialect = "scala213" assumeStandardLibraryStripMargin = true xmlLiterals.assumeFormatted = true +docstrings.wrap = no