diff options
| author | 2026-01-16 20:53:01 +0800 | |
|---|---|---|
| committer | 2026-01-16 20:53:01 +0800 | |
| commit | bb6cf77844343bbf55be3dad201340572564d132 (patch) | |
| tree | 831d979118234ae8b1a2eebdfe7187c2ff966391 | |
| parent | f6a88e61f789c58a9307dd7405faf00d92b5f84b (diff) | |
| download | DropOut-bb6cf77844343bbf55be3dad201340572564d132.tar.gz DropOut-bb6cf77844343bbf55be3dad201340572564d132.zip | |
chore: update pre-commit configuration to skip specific hooksfeat/Instance/Profile-System
Modified the .pre-commit-config.yaml file to add a skip option for formatting, cargo-check, and clippy hooks. This change optimizes the pre-commit setup by allowing selective execution of hooks, enhancing the efficiency of the development workflow.
| -rw-r--r-- | .pre-commit-config.yaml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 885534b..89bdd7e 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,7 +1,8 @@ ci: autofix_prs: true autofix_commit_msg: "[pre-commit.ci] auto fixes from pre-commit hooks [skip ci]" - + skip: [fmt,cargo-check,clippy] + repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v6.0.0 |