From 3a67477afd34f4f66da821715121e8de1ec91f2d Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Sat, 20 Sep 2025 12:47:35 +0100 Subject: [PATCH] remove unnecessary scalafix plugin (#2243) * remove unnecessary scalafix plugin * Update .scalafix.conf --- .scalafix.conf | 1 - project/ScalaFixExtraRulesPlugin.scala | 5 +---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/.scalafix.conf b/.scalafix.conf index c8e1383dbb..5dbe0328dc 100644 --- a/.scalafix.conf +++ b/.scalafix.conf @@ -3,7 +3,6 @@ rules = [ RemoveUnused SortImports ExplicitResultTypes - "github:ohze/scalafix-rules/FinalObject" fix.scala213.DottyMigrate // fix.scala213.NullaryOverride ] diff --git a/project/ScalaFixExtraRulesPlugin.scala b/project/ScalaFixExtraRulesPlugin.scala index 6e35760374..a87a2aa812 100644 --- a/project/ScalaFixExtraRulesPlugin.scala +++ b/project/ScalaFixExtraRulesPlugin.scala @@ -23,9 +23,6 @@ object ScalaFixExtraRulesPlugin extends AutoPlugin with ScalafixSupport { import scalafix.sbt.ScalafixPlugin.autoImport.scalafixDependencies override lazy val projectSettings: Seq[Def.Setting[_]] = super.projectSettings ++ { ThisBuild / scalafixDependencies ++= Seq( - "com.nequissimus" %% "sort-imports" % "0.6.1", - // https://github.com/ohze/scala-rewrites - // an extended version of https://github.com/scala/scala-rewrites - "com.sandinh" %% "scala-rewrites" % "0.1.10-sd") + "com.nequissimus" %% "sort-imports" % "0.6.1") } }