communique 0.1.8

Editorialized release notes powered by AI
amends "package://github.com/jdx/hk/releases/download/v1.35.0/hk@1.35.0#/Config.pkl"
import "package://github.com/jdx/hk/releases/download/v1.35.0/hk@1.35.0#/Builtins.pkl"

local linters = new Mapping<String, Step> {
    ["cargo-clippy"] = Builtins.cargo_clippy
    ["cargo-fmt"] = Builtins.cargo_fmt
}

hooks {
    ["pre-commit"] {
        fix = true
        stash = "git"
        steps = linters
    }
    ["fix"] {
        fix = true
        steps = linters
    }
    ["check"] {
        steps = linters
    }
}