Skip to content

Commit 4194f4a

Browse files
Updates scalafmt
1 parent 9ae56ec commit 4194f4a

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

.scalafmt.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version=2.5.3
1+
version=2.6.1
22
style = defaultWithAlign
33
maxColumn = 100
44

runtime/src/main/scala/org/scalaexercises/exercises/model.scala

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ package model
1919

2020
// This is the exercise runtime metamodel
2121

22-
/** An exercise library.
22+
/**
23+
* An exercise library.
2324
*/
2425
trait Library {
2526
def owner: String
@@ -34,14 +35,16 @@ trait Library {
3435
def buildMetaInfo: BuildInfo
3536
}
3637

37-
/** Library Build Metadata Information
38+
/**
39+
* Library Build Metadata Information
3840
*/
3941
trait BuildInfo {
4042
def resolvers: List[String]
4143
def libraryDependencies: List[String]
4244
}
4345

44-
/** A section in a library.
46+
/**
47+
* A section in a library.
4548
*/
4649
trait Section {
4750
def name: String
@@ -52,7 +55,8 @@ trait Section {
5255
def contributions: List[Contribution]
5356
}
5457

55-
/** A contribution to a section.
58+
/**
59+
* A contribution to a section.
5660
*/
5761
trait Contribution {
5862
def sha: String
@@ -64,7 +68,8 @@ trait Contribution {
6468
def avatarUrl: String
6569
}
6670

67-
/** Exercises within a section.
71+
/**
72+
* Exercises within a section.
6873
*/
6974
trait Exercise {
7075
def name: String

0 commit comments

Comments
 (0)