Add reload to fixall and fix command alias.

This commit is contained in:
hepin1989 2018-12-11 21:53:24 +08:00
parent c38a5dcf9c
commit 41f70ea849
2 changed files with 2 additions and 2 deletions

View file

@ -24,5 +24,5 @@ object ScalafixForMultiNodePlugin extends AutoPlugin with ScalafixSupport {
scalafixIgnoredSetting ++ Seq( scalafixIgnoredSetting ++ Seq(
updateProjectCommands( updateProjectCommands(
alias = "fix", alias = "fix",
value = ";scalafixEnable;compile:scalafix;test:scalafix;multi-jvm:scalafix;test:compile")) value = ";scalafixEnable;compile:scalafix;test:scalafix;multi-jvm:scalafix;test:compile;reload"))
} }

View file

@ -18,5 +18,5 @@ object ScalafixIgnoreFilePlugin extends AutoPlugin with ScalafixSupport {
override def projectSettings: Seq[Def.Setting[_]] = scalafixIgnoredSetting ++ Seq( override def projectSettings: Seq[Def.Setting[_]] = scalafixIgnoredSetting ++ Seq(
addProjectCommandsIfAbsent( addProjectCommandsIfAbsent(
alias = "fix", alias = "fix",
value = ";scalafixEnable;compile:scalafix;test:scalafix;test:compile")) value = ";scalafixEnable;compile:scalafix;test:scalafix;test:compile;reload"))
} }