Skip to content

Commit 6c38e19

Browse files
Update scalafmt-core to 2.7.4 (#1643)
* Update scalafmt-core to 2.7.4 * Reformat Co-authored-by: Frank S. Thomas <[email protected]>
1 parent d4d0855 commit 6c38e19

File tree

4 files changed

+5
-9
lines changed

4 files changed

+5
-9
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.7.3
1+
version = 2.7.4
22
assumeStandardLibraryStripMargin = true
33
align.openParenCallSite = false
44
align.openParenDefnSite = false

modules/core/src/main/scala/org/scalasteward/core/bitbucket/http4s/RepositoryResponse.scala

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,17 +66,15 @@ private[http4s] object RepositoryResponse {
6666
} yield RepositoryResponse(name, defaultBranch, UserOut(owner), cloneUrl, maybeParent)
6767
}
6868

69-
/**
70-
* Monkey patches the [[io.circe.ACursor]] class to get the `downAt` function back, which was removed in
69+
/** Monkey patches the [[io.circe.ACursor]] class to get the `downAt` function back, which was removed in
7170
* version 0.12.0-M4.
7271
*
7372
* @see https://gitter.im/circe/circe?at=5d3f71eff0ff3e2bba8ece73
7473
* @param cursor The cursor to patch.
7574
*/
7675
implicit class RichACursor(cursor: ACursor) {
7776

78-
/**
79-
* If the focus is a JSON array, move to the first element that satisfies the given predicate.
77+
/** If the focus is a JSON array, move to the first element that satisfies the given predicate.
8078
*/
8179
def downAt(p: Json => Boolean): ACursor = {
8280
@tailrec

modules/core/src/main/scala/org/scalasteward/core/bitbucketserver/http4s/Http4sBitbucketServerApiAlg.scala

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ import org.scalasteward.core.vcs.VCSApiAlg
2626
import org.scalasteward.core.vcs.data.PullRequestState.Open
2727
import org.scalasteward.core.vcs.data._
2828

29-
/**
30-
* https://docs.atlassian.com/bitbucket-server/rest/6.6.1/bitbucket-rest.html
29+
/** https://docs.atlassian.com/bitbucket-server/rest/6.6.1/bitbucket-rest.html
3130
*/
3231
class Http4sBitbucketServerApiAlg[F[_]](
3332
bitbucketApiHost: Uri,

modules/core/src/main/scala/org/scalasteward/core/repoconfig/RepoConfigAlg.scala

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,7 @@ final class RepoConfigAlg[F[_]](implicit
4444
.map(_ |+| defaultCfg)
4545
.getOrElse(defaultCfg)
4646

47-
/**
48-
* Default configuration will try to read file specified in config.defaultRepoConfigFile first;
47+
/** Default configuration will try to read file specified in config.defaultRepoConfigFile first;
4948
* if not found - fallback to empty configuration.
5049
*/
5150
val defaultRepoConfig: F[RepoConfig] =

0 commit comments

Comments
 (0)