Add git_staged as a config option.
This commit is contained in:
parent
4ba723d5cc
commit
da0e38e3bb
|
@ -8,6 +8,10 @@ use crate::{ExitAction, Task};
|
||||||
#[derive(Debug, Deserialize, Serialize)]
|
#[derive(Debug, Deserialize, Serialize)]
|
||||||
#[serde(deny_unknown_fields)]
|
#[serde(deny_unknown_fields)]
|
||||||
pub struct PreCommit {
|
pub struct PreCommit {
|
||||||
|
/// List of globs to check against staged files.
|
||||||
|
#[serde(default)]
|
||||||
|
pub git_staged: Vec<String>,
|
||||||
|
|
||||||
/// Display name for this hook.
|
/// Display name for this hook.
|
||||||
pub name: Option<String>,
|
pub name: Option<String>,
|
||||||
|
|
||||||
|
|
|
@ -5,6 +5,7 @@ template = "test.sh"
|
||||||
[[pre_commit]]
|
[[pre_commit]]
|
||||||
name = "Pre Commit 1"
|
name = "Pre Commit 1"
|
||||||
command = "exit 0"
|
command = "exit 0"
|
||||||
|
git_staged = ["*.txt"]
|
||||||
on_failure = "continue"
|
on_failure = "continue"
|
||||||
|
|
||||||
[[pre_commit]]
|
[[pre_commit]]
|
||||||
|
|
|
@ -8,6 +8,7 @@ use insta::assert_snapshot;
|
||||||
#[test]
|
#[test]
|
||||||
fn test_serialize() {
|
fn test_serialize() {
|
||||||
let pre_commit_command = PreCommit {
|
let pre_commit_command = PreCommit {
|
||||||
|
git_staged: vec!["*.txt".to_string()],
|
||||||
name: Some("Command Test".to_string()),
|
name: Some("Command Test".to_string()),
|
||||||
on_failure: ExitAction::Continue,
|
on_failure: ExitAction::Continue,
|
||||||
task: Task {
|
task: Task {
|
||||||
|
@ -17,6 +18,7 @@ fn test_serialize() {
|
||||||
};
|
};
|
||||||
|
|
||||||
let pre_commit_script = PreCommit {
|
let pre_commit_script = PreCommit {
|
||||||
|
git_staged: vec![],
|
||||||
name: Some("Script Test".to_string()),
|
name: Some("Script Test".to_string()),
|
||||||
on_failure: ExitAction::Stop,
|
on_failure: ExitAction::Stop,
|
||||||
task: Task {
|
task: Task {
|
||||||
|
|
|
@ -10,6 +10,7 @@ Config {
|
||||||
},
|
},
|
||||||
pre_commit: [
|
pre_commit: [
|
||||||
PreCommit {
|
PreCommit {
|
||||||
|
git_staged: [],
|
||||||
name: None,
|
name: None,
|
||||||
on_failure: Stop,
|
on_failure: Stop,
|
||||||
task: Task {
|
task: Task {
|
||||||
|
|
|
@ -12,6 +12,9 @@ Config {
|
||||||
},
|
},
|
||||||
pre_commit: [
|
pre_commit: [
|
||||||
PreCommit {
|
PreCommit {
|
||||||
|
git_staged: [
|
||||||
|
"*.txt",
|
||||||
|
],
|
||||||
name: Some(
|
name: Some(
|
||||||
"Pre Commit 1",
|
"Pre Commit 1",
|
||||||
),
|
),
|
||||||
|
@ -24,6 +27,7 @@ Config {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
PreCommit {
|
PreCommit {
|
||||||
|
git_staged: [],
|
||||||
name: Some(
|
name: Some(
|
||||||
"Pre Commit 2",
|
"Pre Commit 2",
|
||||||
),
|
),
|
||||||
|
|
|
@ -7,11 +7,13 @@ config = 'Hooked.toml'
|
||||||
directory = 'hooks'
|
directory = 'hooks'
|
||||||
|
|
||||||
[[pre_commit]]
|
[[pre_commit]]
|
||||||
|
git_staged = ['*.txt']
|
||||||
name = 'Command Test'
|
name = 'Command Test'
|
||||||
on_failure = 'continue'
|
on_failure = 'continue'
|
||||||
command = 'exit 0'
|
command = 'exit 0'
|
||||||
|
|
||||||
[[pre_commit]]
|
[[pre_commit]]
|
||||||
|
git_staged = []
|
||||||
name = 'Script Test'
|
name = 'Script Test'
|
||||||
on_failure = 'stop'
|
on_failure = 'stop'
|
||||||
script = 'test.sh'
|
script = 'test.sh'
|
||||||
|
|
Loading…
Reference in New Issue