From 8b4cd857b2fb03f824dd1dd06af95daa9e506e30 Mon Sep 17 00:00:00 2001 From: TeckHack76 Date: Tue, 13 May 2025 21:28:54 +0530 Subject: [PATCH] docs: add instructions for skipping pre-commit hooks --- CONTRIBUTING.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 3df39f95b784..f3d7e7c05b1b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -72,6 +72,12 @@ That's it! The plugin will run every time you commit any changes. If there are a ```bash pre-commit run --all-files --show-diff-on-failure ``` +### Skipping Pre-commit Hooks for Exploratory Changes + +When you're making local experimental changes and don't want pre-commit hooks to run, you can bypass them using: + +```bash +git commit --no-verify -m "Exploratory: Testing XYZ" #### Coding Style