Merge pull request #152 from scala-steward/update/scalafmt-core-2.6.1

Update scalafmt-core to 2.6.1
This commit is contained in:
mergify[bot] 2020-06-20 21:12:37 +00:00 committed by GitHub
commit 3018fbc0b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 9 additions and 5 deletions

View File

@ -1,4 +1,4 @@
version = "2.6.0"
version = "2.6.1"
preset = defaultWithAlign

View File

@ -86,7 +86,8 @@ object OUpload {
def noSource: UploadResult = NoSource
/** When adding files to an item, no item was found using the given
* item-id. */
* item-id.
*/
case object NoItem extends UploadResult
def noItem: UploadResult = NoItem

View File

@ -11,14 +11,16 @@ object CollectiveState {
/** A collective may be readonly in cases it is implicitly closed
* (e.g. no payment). Users can still see there data and
* download, but have no write access. */
* download, but have no write access.
*/
case object ReadOnly extends CollectiveState
/** A collective that has been explicitely closed. */
case object Closed extends CollectiveState
/** A collective blocked by a super user, usually some emergency
* action. */
* action.
*/
case object Blocked extends CollectiveState
def fromString(s: String): Either[String, CollectiveState] =

View File

@ -13,7 +13,8 @@ object JobState {
case object Waiting extends JobState {}
/** A scheduler has picked up this job and will pass it to the next
* free slot. */
* free slot.
*/
case object Scheduled extends JobState {}
/** Is currently executing */