From 438119e0388b3489cb85efa4f40e139883f5910f Mon Sep 17 00:00:00 2001 From: pgfm Date: Thu, 16 Jun 2022 09:54:20 -0500 Subject: [PATCH] Adding standard exclusions --- scalafmt.conf | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/scalafmt.conf b/scalafmt.conf index 0f2a90e..358e8c8 100644 --- a/scalafmt.conf +++ b/scalafmt.conf @@ -1,3 +1,4 @@ +// See: https://github.com/scalameta/scalafmt/tags for the latest tags. version = 3.5.2 runner.dialect = scala3 maxColumn = 80 @@ -58,3 +59,13 @@ docstrings { wrap = yes forceBlankLineBefore = true } + +project { + excludePaths = [ + "glob:**target/**", + "glob:**.metals/**", + "glob:**.bloop/**", + "glob:**.bsp/**", + "glob:**metals.sbt" + ] +}