diff options
| author | 2026-01-16 14:09:04 +0800 | |
|---|---|---|
| committer | 2026-01-16 14:18:20 +0800 | |
| commit | 9948550785d6bf273cadd7dc132038277964e9eb (patch) | |
| tree | 83d5592d1b14b95ce6e616b8441f9f452a45c25e /.pre-commit-config.yaml | |
| parent | 3a64328733cf2f3153a7e6841217c4c239cd8b03 (diff) | |
| download | DropOut-9948550785d6bf273cadd7dc132038277964e9eb.tar.gz DropOut-9948550785d6bf273cadd7dc132038277964e9eb.zip | |
chore: update clippy arguments in pre-commit configuration to remove warnings as errors
Modified the .pre-commit-config.yaml to adjust the clippy hook arguments, removing the enforcement of warnings as errors. This change simplifies the linting process for Rust code, allowing for a more lenient approach to warnings.
Diffstat (limited to '.pre-commit-config.yaml')
| -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 a8ee70d..2524d4a 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -23,4 +23,4 @@ repos: - id: fmt args: ["--check", "--manifest-path", "src-tauri/Cargo.toml", "--"] - id: clippy - args: ["--manifest-path", "src-tauri/Cargo.toml", "-D", "warnings", "--"] + args: ["--manifest-path", "src-tauri/Cargo.toml", "--"] |