-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #211 from scala-steward/update/scalafmt-core-3.0.8
Update scalafmt-core to 3.0.8
- Loading branch information
Showing
33 changed files
with
92 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
version = "2.7.5" | ||
version = "3.0.8" | ||
maxColumn = 120 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,8 @@ package com.thoughtworks.sbtBestPractice.detectLicense | |
import sbt.Keys._ | ||
import sbt._ | ||
|
||
/** | ||
* @author 杨博 (Yang Bo) <[email protected]> | ||
/** @author | ||
* 杨博 (Yang Bo) <[email protected]> | ||
*/ | ||
object MitLicense extends AutoPlugin { | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,8 +4,8 @@ import sbt.plugins.JvmPlugin | |
import sbt._ | ||
import Keys._ | ||
|
||
/** | ||
* @author 杨博 (Yang Bo) <[email protected]> | ||
/** @author | ||
* 杨博 (Yang Bo) <[email protected]> | ||
*/ | ||
object GithubActionsDocTitle extends AutoPlugin { | ||
override def requires: Plugins = GithubActionsEnvironmentVariables && JvmPlugin | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,12 +3,13 @@ package com.thoughtworks.sbtBestPractice.githubActions | |
import sbt._ | ||
import com.thoughtworks.dsl.keywords.Yield | ||
|
||
/** | ||
* Configure sbt settings of environment variables from Github Actions | ||
/** Configure sbt settings of environment variables from Github Actions | ||
* | ||
* @note This plugin should only be enabled when sbt is running on Github Actions | ||
* @note | ||
* This plugin should only be enabled when sbt is running on Github Actions | ||
* | ||
* @author 杨博 (Yang Bo) <[email protected]> | ||
* @author | ||
* 杨博 (Yang Bo) <[email protected]> | ||
*/ | ||
object GithubActionsEnvironmentVariables extends AutoPlugin { | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,8 +5,8 @@ import org.eclipse.jgit.lib.Constants | |
import sbt.Keys._ | ||
import sbt._ | ||
|
||
/** | ||
* @author 杨博 (Yang Bo) <[email protected]> | ||
/** @author | ||
* 杨博 (Yang Bo) <[email protected]> | ||
*/ | ||
object GithubActionsScaladocSourceUrl extends AutoPlugin { | ||
override def requires: Plugins = GithubActionsEnvironmentVariables && GitPlugin | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
resolvers += Resolver.sonatypeRepo("staging") | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,8 +6,8 @@ import sbt.Defaults.{packageDocMappings, packageTaskSettings} | |
import sbt.plugins.JvmPlugin | ||
import sbtunidoc.UnidocKeys | ||
|
||
/** | ||
* @author 杨博 (Yang Bo) <[email protected]> | ||
/** @author | ||
* 杨博 (Yang Bo) <[email protected]> | ||
*/ | ||
object PackageUnidoc extends AutoPlugin with UnidocKeys { | ||
|
||
|
@@ -17,7 +17,8 @@ object PackageUnidoc extends AutoPlugin with UnidocKeys { | |
|
||
object autoImport { | ||
val unidocProject = settingKey[Option[ProjectRef]]( | ||
"The project that defines a unidoc task. If this `unidocProject` setting is not None, packageDoc will use files generated from unidoc instead of per project doc") | ||
"The project that defines a unidoc task. If this `unidocProject` setting is not None, packageDoc will use files generated from unidoc instead of per project doc" | ||
) | ||
} | ||
import autoImport._ | ||
|
||
|
@@ -35,7 +36,8 @@ object PackageUnidoc extends AutoPlugin with UnidocKeys { | |
case Some(p) => (unidoc in Compile in p).map(_.flatMap(Path.allSubpaths)) | ||
} | ||
} | ||
)) | ||
) | ||
) | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,8 +4,8 @@ import sbt._ | |
import sbt.Keys._ | ||
import sbt.plugins.JvmPlugin | ||
|
||
/** | ||
* @author 杨博 (Yang Bo) <[email protected]> | ||
/** @author | ||
* 杨博 (Yang Bo) <[email protected]> | ||
*/ | ||
object ScaladocFeatures extends AutoPlugin { | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,8 +4,8 @@ import sbt._ | |
import sbt.Keys._ | ||
import sbt.plugins.JvmPlugin | ||
|
||
/** | ||
* @author 杨博 (Yang Bo) <[email protected]> | ||
/** @author | ||
* 杨博 (Yang Bo) <[email protected]> | ||
*/ | ||
object ScaladocTitle extends AutoPlugin { | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,8 +5,8 @@ import org.eclipse.jgit.lib.Constants | |
import sbt.Keys._ | ||
import sbt._ | ||
|
||
/** | ||
* @author 杨博 (Yang Bo) <[email protected]> | ||
/** @author | ||
* 杨博 (Yang Bo) <[email protected]> | ||
*/ | ||
object ScaladocSourceUrl extends AutoPlugin { | ||
override def requires: Plugins = Travis && GitPlugin | ||
|
Oops, something went wrong.