Reformat and remove unused imports

This commit is contained in:
Aly 2019-01-14 15:05:51 -08:00
parent bd78f6eee3
commit d4a2e22556
No known key found for this signature in database
GPG Key ID: 555B7346639DDAC3
4 changed files with 4 additions and 6 deletions

View File

@ -15,8 +15,8 @@ val sharedSettings = Seq(
"-Ypartial-unification",
),
libraryDependencies ++= Seq(
"org.typelevel" %%% "cats-core" % "1.5.0",
"org.typelevel" %%% "cats-effect" % "1.1.0",
"org.typelevel" %%% "cats-core" % "1.5.0",
"org.typelevel" %%% "cats-effect" % "1.1.0",
"org.scala-graph" %%% "graph-core" % "1.12.5",
),
resolvers += Resolver.sonatypeRepo("releases"),

View File

@ -1,7 +1,6 @@
package tf.bug.cataquack
import cats.Functor
import cats.effect.IO
/**
* A case class meant to be used under IORaw (see package.scala) like so:

View File

@ -1,7 +1,6 @@
package tf.bug.cataquack
import cats._
import cats.data._
import cats.implicits._
trait Storage[F[_], C[_]] {

View File

@ -1,2 +1,2 @@
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "0.6.0")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.26")
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "0.6.0")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.26")