hooked/hooked-config/source/config/pre_commit.rs

26 lines
588 B
Rust
Raw Normal View History

2022-10-28 11:58:36 +00:00
//! Pre-commit hook definitions.
use serde::{Deserialize, Serialize};
use crate::{ExitAction, Task};
/// A pre-commit hook.
#[derive(Debug, Deserialize, Serialize)]
#[serde(deny_unknown_fields)]
pub struct PreCommit {
/// Display name for this hook.
pub name: Option<String>,
/// What to do when the hook exits with a non-zero status code.
2022-10-28 12:08:27 +00:00
#[serde(default)]
2022-10-28 11:58:36 +00:00
pub on_failure: ExitAction,
2022-11-27 16:29:44 +00:00
/// List of globs to check against staged files.
#[serde(default)]
pub staged: Vec<String>,
2022-10-28 11:58:36 +00:00
/// Task to perform when this hook is called.
#[serde(flatten)]
pub task: Task,
}