From a89cbe5bb0671e67c93e51af2a82d8298e16d3e5 Mon Sep 17 00:00:00 2001 From: "Elf M. Sternberg" Date: Tue, 21 Mar 2023 17:53:33 -0700 Subject: [PATCH] Turns out, I don't need this if I'm not going to be changing how the hook operates. --- .pre-commit-hooks.yaml | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 .pre-commit-hooks.yaml diff --git a/.pre-commit-hooks.yaml b/.pre-commit-hooks.yaml deleted file mode 100644 index 50bfb5e..0000000 --- a/.pre-commit-hooks.yaml +++ /dev/null @@ -1,23 +0,0 @@ ---- -- id: fmt - name: fmt - description: Format files with cargo fmt. - entry: cargo fmt - language: system - types: [rust] - args: ["--"] -- id: cargo-check - name: cargo check - description: Check the package for errors. - entry: cargo check - language: system - types: [rust] - pass_filenames: false -- id: clippy - name: clippy - description: Lint rust sources - entry: cargo clippy - language: system - args: ["--", "-D", "warnings"] - types: [rust] - pass_filenames: false