]> git.bitcoin.ninja Git - rust-lightning/commitdiff
Pass our `edition` to `rustfmt`
authorElias Rohrer <dev@tnull.de>
Thu, 6 Jun 2024 07:30:30 +0000 (09:30 +0200)
committerElias Rohrer <dev@tnull.de>
Fri, 7 Jun 2024 14:55:11 +0000 (16:55 +0200)
.. as it otherwise doesn't seem to pick up the right one when checkin
integration tests.

ci/rustfmt.sh

index a1fdf6bd7f3282ff669944335e9d029d2a21989f..1039429bc6ae5e6cf7a377ad6a679eee143609a5 100755 (executable)
@@ -15,5 +15,5 @@ TMP_FILE=$(mktemp)
 find . -name '*.rs' -type f |sort >$TMP_FILE
 for file in $(comm -23 $TMP_FILE rustfmt_excluded_files); do
        echo "Checking formatting of $file"
-       rustfmt $VERS --check $file
+       rustfmt $VERS --edition 2021 --check $file
 done