File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ Wrapping up your PR
71
71
while working on this. Add the exclusions to ` build.sbt ` . Binary
72
72
incompatibilities are expected when modifying ` scalapb.proto ` and in the
73
73
meantime we have some tolerance for certain type of incompatabilities.
74
- * In SBT, run ` scalafmt ` and ` test:scalafmt ` to ensure the code compiles
74
+ * In SBT, run ` scalafmtAll ` to ensure the code compiles
75
75
cleanly.
76
76
* Run ` ./make_plugin_proto.sh ` to re-generate all the generated code that
77
77
ships with ScalaPB.
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ inThisBuild(
17
17
)
18
18
)
19
19
20
- addCommandAlias(" fmt" , " all scalafmtSbt scalafmt test:scalafmt " )
20
+ addCommandAlias(" fmt" , " all scalafmtSbt scalafmtAll " )
21
21
22
22
lazy val sharedNativeSettings = List (
23
23
nativeLinkStubs := true // for utest
Original file line number Diff line number Diff line change 2
2
set -e
3
3
./test_generated_code_checked_in.sh
4
4
for d in examples/* ; do cd " $d " && sbt test && cd ../..; done
5
- sbt -J-Xmx4500M scalafmtCheck test:scalafmtCheck scalafmtSbtCheck
5
+ sbt -J-Xmx4500M scalafmtCheckAll scalafmtSbtCheck
You can’t perform that action at this time.
0 commit comments