diff options
| author | 2026-01-16 13:59:39 +0800 | |
|---|---|---|
| committer | 2026-01-16 14:18:19 +0800 | |
| commit | e714e6f5739ba4e654a5572bdeaf8bf445aaecb7 (patch) | |
| tree | c3a7469ffff17cdfff7401038a4e8f0b576c4710 | |
| parent | 51929ac0808e7551ea4165dedad9687590de6028 (diff) | |
| download | DropOut-e714e6f5739ba4e654a5572bdeaf8bf445aaecb7.tar.gz DropOut-e714e6f5739ba4e654a5572bdeaf8bf445aaecb7.zip | |
chore: remove automatic fix option from clippy in pre-commit configuration
Updated the .pre-commit-config.yaml to remove the automatic fix option for the clippy hook, streamlining the linting process for Rust code by requiring manual fixes. This change enhances control over code quality checks.
| -rw-r--r-- | .pre-commit-config.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index cf13202..f553eae 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -23,4 +23,4 @@ repos: - id: fmt args: ["--manifest-path", "src-tauri/Cargo.toml"] - id: clippy - args: ["--manifest-path", "src-tauri/Cargo.toml", "--fix", "--allow-dirty"] + args: ["--manifest-path", "src-tauri/Cargo.toml"] |