Skip to content

Commit c8b4341

Browse files
Update scalafmt-core to 3.3.3 (#367)
* Update scalafmt-core to 3.3.3 * Reformat with scalafmt 3.3.3
1 parent a5fc27e commit c8b4341

File tree

4 files changed

+8
-12
lines changed

4 files changed

+8
-12
lines changed

.scalafmt.conf

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version = "3.3.1"
1+
version = "3.3.3"
22

33
align.preset = more
44
maxColumn = 100

cats/shared/src/main/scala/caseapp/cats/IOCaseApp.scala

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ abstract class IOCaseApp[T](implicit val parser0: Parser[T], val messages: Help[
4545
* behavior, override this method as shown below.
4646
*
4747
* @example
48-
* {{{
48+
* {{{
4949
* import caseapp.core.parser.PlatformArgsExpander
5050
* override def expandArgs(args: List[String]): List[String]
5151
* = PlatformArgsExpander.expand(args)
52-
* }}}
52+
* }}}
5353
*
5454
* @param args
5555
* @return

core/shared/src/main/scala/caseapp/core/app/CaseApp.scala

+2-2
Original file line numberDiff line numberDiff line change
@@ -98,11 +98,11 @@ abstract class CaseApp[T](implicit val parser0: Parser[T], val messages: Help[T]
9898
* behavior, override this method as shown below.
9999
*
100100
* @example
101-
* {{{
101+
* {{{
102102
* import caseapp.core.parser.PlatformArgsExpander
103103
* override def expandArgs(args: List[String]): List[String]
104104
* = PlatformArgsExpander.expand(args)
105-
* }}}
105+
* }}}
106106
*
107107
* @param args
108108
* @return

core/shared/src/main/scala/caseapp/core/util/Fansi.scala

+3-7
Original file line numberDiff line numberDiff line change
@@ -182,13 +182,9 @@ object Str {
182182
* character encoded in its bits. Each [[Attr]] belongs to a [[Category]] that occupies a range
183183
* of bits within each long:
184184
*
185-
* 61... 55 54 53 52 51 .... 31 30 29 28 27 26 25 ..... 6 5 4 3 2 1 0
186-
* |--------| |-----------------------| |-----------------------| | | |bold
187-
* | | | | |reversed
188-
* | | | |underlined
189-
* | | |foreground-color
190-
* | |background-color
191-
* |unused
185+
* 61... 55 54 53 52 51 .... 31 30 29 28 27 26 25 ..... 6 5 4 3 2 1 0 \|--------|
186+
* \|-----------------------| |-----------------------| | | |bold \| | | | |reversed \| | |
187+
* \|underlined \| | |foreground-color \| |background-color \|unused
192188
*
193189
* The `0000 0000 0000 0000` long corresponds to plain text with no decoration
194190
*/

0 commit comments

Comments
 (0)