From 0f27bb495c5b67043e0eb68640d06fab9a87232c Mon Sep 17 00:00:00 2001 From: Akhil Narang Date: Mon, 25 Nov 2024 13:33:46 +0530 Subject: [PATCH] chore: update pre-commit config Otherwise there was always a warning: ``` [WARNING] top-level `default_stages` uses deprecated stage names (commit) which will be removed in a future version. run: `pre-commit migrate-config` to automatically fix this. ``` Signed-off-by: Akhil Narang --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 4b2f0455cc..be02212e57 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,5 +1,5 @@ exclude: 'node_modules|.git' -default_stages: [commit] +default_stages: [pre-commit] fail_fast: false