Skip to content

Commit efe2e9f

Browse files
committed
Add check
1 parent bd62bab commit efe2e9f

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

build.sbt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ lazy val commonSettings = Seq(
3131
)
3232

3333
val alias: Seq[sbt.Def.Setting[?]] =
34-
addCommandAlias("build", "+all compile test")
34+
addCommandAlias("build", "+all compile test") ++
35+
addCommandAlias("check", "scalafmtCheck")
3536

3637
lazy val root =
3738
project

modules/stream/src/main/scala/akka/stream.scala

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
package akka
22

33
package object stream {
4-
@deprecated("The Materializer now has all methods the ActorMaterializer used to have", "Akka 2.6.0")
4+
@deprecated(
5+
"The Materializer now has all methods the ActorMaterializer used to have",
6+
"Akka 2.6.0"
7+
)
58
type ActorMaterializer = org.apache.pekko.stream.ActorMaterializer
69
type Materializer = org.apache.pekko.stream.Materializer
710
val Materializer: org.apache.pekko.stream.Materializer.type =

project/plugins.sbt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
addSbtPlugin("com.github.sbt" % "sbt-dynver" % "5.1.0")
22
addSbtPlugin("com.evolution" % "sbt-scalac-opts-plugin" % "0.0.9")
33
addSbtPlugin("com.evolution" % "sbt-artifactory-plugin" % "0.0.2")
4+
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.4")

0 commit comments

Comments
 (0)