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

enable scalafix plugin on scalafix-testkit #1262

Merged
merged 1 commit into from
Oct 27, 2020
Merged
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
1 change: 0 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,6 @@ lazy val testkit = project
scalatest
)
)
.disablePlugins(ScalafixPlugin)
.dependsOn(cli)

lazy val unit = project
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,14 @@ package scalafix.testkit
import java.nio.charset.StandardCharsets
import java.nio.file.Files

import org.scalatest.exceptions.TestFailedException
import org.scalatest.{BeforeAndAfterAll, Suite, TestRegistration}
import scalafix.internal.patch.PatchInternals
import scalafix.internal.reflect.ClasspathOps
import scalafix.internal.testkit.{AssertDiff, CommentAssertion}

import scala.meta._
import scala.meta.internal.io.FileIO

import org.scalatest.BeforeAndAfterAll
import org.scalatest.Suite
import org.scalatest.TestRegistration
import org.scalatest.exceptions.TestFailedException
import scalafix.internal.patch.PatchInternals
import scalafix.internal.reflect.ClasspathOps
import scalafix.internal.testkit.AssertDiff
import scalafix.internal.testkit.CommentAssertion
Expand Down