This file contains hidden or 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
| import org.scalafmt.bootstrap.ScalafmtBootstrap | |
| import org.scalafmt.sbt.ScalafmtPlugin | |
| import sbt._ | |
| import sbt.Keys._ | |
| import sbt.inc.Analysis | |
| object AutomateScalafmtPlugin extends AutoPlugin { | |
| object autoImport { | |
| def automateScalafmtFor(configurations: Configuration*): Seq[Setting[_]] = |
This file contains hidden or 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
| import scala.language.postfixOps | |
| import scala.concurrent.ExecutionContext | |
| import scala.concurrent.Future | |
| import cats.data.EitherT | |
| import cats.instances.list._ | |
| import cats.instances.future._ | |
| import cats.syntax.traverse._ |