#pre-commit #git-hook #hook #git #rustfmt #formatter

devx-pre-commit

Utilities for creating git pre-commit hooks useful in rust projects

6 releases (breaking)

0.5.0 Jun 4, 2021
0.4.0 May 28, 2021
0.3.1 Sep 22, 2020
0.3.0 Aug 29, 2020
0.1.0 Aug 16, 2020

#1278 in Development tools

Download history 3449/week @ 2024-03-06 4341/week @ 2024-03-13 3803/week @ 2024-03-20 3330/week @ 2024-03-27 4850/week @ 2024-04-03 3809/week @ 2024-04-10 4184/week @ 2024-04-17 6041/week @ 2024-04-24 3228/week @ 2024-05-01 2457/week @ 2024-05-08 3205/week @ 2024-05-15 3353/week @ 2024-05-22 3745/week @ 2024-05-29 3744/week @ 2024-06-05 3139/week @ 2024-06-12 3461/week @ 2024-06-19

14,605 downloads per month

MIT/Apache

38KB
543 lines

devx-pre-commit

devx-pre-commit provides utilities for creating git pre-commit hooks.

In particular, there are convenient APIs for

  • Efficiently running rustfmt on crates with staged rust source files
  • Installing the current binary to .git/hooks/pre-commit

See the crate-level docs for more info.


lib.rs:

devx-pre-commit provides utilities for creating git pre-commit hooks.

In particular, there are convenient APIs for

  • Efficiently running rustfmt on crates with staged rust source files
  • Installing the current binary to .git/hooks/pre-commit

This crate is meant to be used only in dev environment, preferably with cargo-xtask setup. By having something like the code bellow in xtask binary crate you will be able to run the following command to install the git pre-commit hook and never bother running cargo fmt manually again:

cargo xtask install-pre-commit-hook

ℹ️ Note: This assumes there is an alias in .cargo/config:

[alias]
xtask = "run --package xtask --bin xtask --"

Example dev cli:

use devx_pre_commit::{PreCommitContext, locate_project_root};
use anyhow::Result;
use std::{ffi::OsStr, path::PathBuf};

fn run_hook() -> Result<()> {
    let mut ctx = PreCommitContext::from_git_diff(locate_project_root()?)?;

    // Optionally filter out the files you don't want to format
    ctx.retain_staged_files(|path| {
        path.components().all(|it| it.as_os_str() != OsStr::new("generated"))
    });

    // Run `cargo fmt` against the crates with staged rust source files
    ctx.rustfmt()?;

    // Stage all the changes potenitally introduced by rustfmt
    // It is super-important to call this method at the end of the hook
    ctx.stage_new_changes()?;
    Ok(())
}

fn main() -> Result<()> {
    if let Some(true) = std::env::args().next().map(|it| it.contains("pre-commit")) {
        return run_hook();
    }
    match std::env::args().nth(1).expect("No args").as_str() {
        "install-pre-commit-hook" => {
            devx_pre_commit::install_self_as_hook(&locate_project_root()?)?;
        }
        _ => {
            eprintln!("Hi, this is a dev cli, here are the available commands...");
        }
    }
    Ok(())
}

Dependencies

~300KB