Skip to content

Commit 8d1b677

Browse files
committed
Revert "Use scalafmt."
This reverts commit a00c80a.
1 parent fa2963f commit 8d1b677

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

build.mill

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ import mill._, scalalib._, scalanativelib._, publish._
88
import mill.scalalib.api.ZincWorkerUtil
99
import com.github.lolgab.mill.mima._
1010
import de.tobiasroeser.mill.vcs.version.VcsVersion
11-
import mill.scalalib.scalafmt.ScalafmtModule
12-
1311

1412
val communityBuildDottyVersion = sys.props.get("dottyVersion").toList
1513

@@ -117,7 +115,7 @@ trait OsLibModule
117115
}
118116
}
119117

120-
trait OsModule extends OsLibModule with ScalafmtModule { outer =>
118+
trait OsModule extends OsLibModule { outer =>
121119
def ivyDeps = Agg(Deps.geny, Deps.collectionCompact)
122120
override def compileIvyDeps = T {
123121
val scalaReflectOpt = Option.when(!ZincWorkerUtil.isDottyOrScala3(scalaVersion()))(

os/test/src/ZipOpTests.scala

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,7 @@ object ZipOpTests extends TestSuite {
8181
dest = wd / "zipByExcludingCertainFiles"
8282
)
8383
val paths = os.walk(outputZipFilePath).sorted
84-
val expected =
85-
Seq(wd / "zipByExcludingCertainFiles/File.amx", wd / "zipByExcludingCertainFiles")
84+
val expected = Seq(wd / "zipByExcludingCertainFiles/File.amx", wd / "zipByExcludingCertainFiles")
8685
assert(paths == expected)
8786
}
8887

@@ -172,7 +171,7 @@ object ZipOpTests extends TestSuite {
172171
val expected = Seq(
173172
wd / "unzipAllExceptExcludingCertainFiles/File.txt",
174173
wd / "unzipAllExceptExcludingCertainFiles/one.txt",
175-
wd / "folder1"
174+
wd / "folder1",
176175
)
177176

178177
assert(paths == expected)

0 commit comments

Comments
 (0)