Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update sbt-scalafix, scalafix-core to 0.11.1 #627

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2")
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.9")
addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.3.2")
addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "3.1.0")
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.10.4")
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.11.1")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.11.0")
4 changes: 2 additions & 2 deletions scalafix/tests/src/test/scala/fix/ScalafixTests.scala
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@

package fix

import org.scalatest.FunSuiteLike
import org.scalatest.funsuite.AnyFunSuiteLike
import scala.meta._
import scalafix.v0._
import scalafix.testkit._

class ScalafixTests extends scalafix.testkit.AbstractSemanticRuleSuite with FunSuiteLike {
class ScalafixTests extends scalafix.testkit.AbstractSemanticRuleSuite with AnyFunSuiteLike {

val only: Option[String] =
// Some("Playground") // << to run only one test:
Expand Down
Loading