From b90d656e24a0f1a506ddb2fd611ca78e857ef836 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jesu=CC=81s=20Pe=CC=81rez?= Date: Mon, 12 Jan 2026 04:23:38 +0000 Subject: [PATCH] chore: update content --- .pre-commit-config.yaml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index c67e522..8b4e0ff 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -32,12 +32,15 @@ repos: pass_filenames: false stages: [pre-push] - - id: cargo-deny - name: Cargo deny (licenses & advisories) - entry: bash -c 'if [ -f Cargo.toml ]; then cargo deny check licenses advisories; elif [ -f platform/Cargo.toml ]; then cd platform && cargo deny check licenses advisories; fi' - language: system - pass_filenames: false - stages: [pre-push] + # NOTE: cargo-deny config needs migration to latest version + # See: https://github.com/EmbarkStudios/cargo-deny/pull/611 + # Disabled until deny.toml is updated to current format + # - id: cargo-deny + # name: Cargo deny (licenses & advisories) + # entry: bash -c 'if [ -f Cargo.toml ]; then cargo deny check; elif [ -f platform/Cargo.toml ]; then cd platform && cargo deny check; fi' + # language: system + # pass_filenames: false + # stages: [pre-push] # ============================================================================ # Nushell Hooks (optional - enable if using Nushell)