1
1
mirror of https://github.com/orhun/git-cliff.git synced 2025-01-05 23:03:12 +03:00

style(fmt): update the derives in config module

This commit is contained in:
Orhun Parmaksız 2023-01-13 17:35:11 +03:00
parent eee35ad1ee
commit 336b25f3ae
No known key found for this signature in database
GPG Key ID: F83424824B3E4B90

View File

@ -59,11 +59,11 @@ pub struct GitConfig {
pub filter_commits: Option<bool>,
/// Blob pattern for git tags.
pub tag_pattern: Option<String>,
#[serde(with = "serde_regex", default)]
/// Regex to skip matched tags.
pub skip_tags: Option<Regex>,
#[serde(with = "serde_regex", default)]
pub skip_tags: Option<Regex>,
/// Regex to ignore matched tags.
#[serde(with = "serde_regex", default)]
pub ignore_tags: Option<Regex>,
/// Whether to sort tags topologically.
pub topo_order: Option<bool>,