summaryrefslogtreecommitdiff
path: root/pre-commit.sh
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2025-09-09 00:48:56 -0400
committerpommicket <pommicket@gmail.com>2025-09-09 00:48:56 -0400
commiteae80ef227870382b4d76168866f9683e93e84f3 (patch)
treedeff14a734a5f4981425cc11d44409a7e0d75927 /pre-commit.sh
parente3a4ef53a75bc10129010cf18fb7ce68a6acbf2a (diff)
Fix \u{0} being accepted; errors tests
Diffstat (limited to 'pre-commit.sh')
-rwxr-xr-xpre-commit.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/pre-commit.sh b/pre-commit.sh
index 82f7404..fb3459b 100755
--- a/pre-commit.sh
+++ b/pre-commit.sh
@@ -3,6 +3,6 @@ cargo fmt || exit 1
cargo check || exit 1
cargo clippy -- -D warnings || exit 1
# Check that there are no errors with no_std
-cargo check --target=wasm32-unknown-unknown --no-default-features || exit 1
+cargo check --no-default-features || exit 1
cargo test || exit 1
git add -u || exit 1