From 5a3f1a61801e3f9e5d8a4f4b79c5136b849870ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vojt=C4=9Bch=20Toman?= Date: Sat, 25 Nov 2023 23:45:19 +0100 Subject: [PATCH] Remove nightly rustfmt check from pre-commit githook See #2135 --- githooks/pre-commit | 3 --- 1 file changed, 3 deletions(-) diff --git a/githooks/pre-commit b/githooks/pre-commit index 5bb2c486..dc0fa1bf 100755 --- a/githooks/pre-commit +++ b/githooks/pre-commit @@ -47,6 +47,3 @@ git diff-index --check --cached $against -- || exit 1 # Check that code lints cleanly. cargo clippy --all-features -- -D warnings || exit 1 - -# Check that there are no formatting issues. -cargo +nightly fmt --check || exit 1