Skip to content

Commit

Permalink
style(fmt): update the derives in config module
Browse files Browse the repository at this point in the history
  • Loading branch information
orhun committed Jan 13, 2023
1 parent eee35ad commit 336b25f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions git-cliff-core/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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>,
Expand Down

0 comments on commit 336b25f

Please sign in to comment.