From 336b25f3ae9da5d972304662fcdb88f4719c721d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Orhun=20Parmaks=C4=B1z?= Date: Fri, 13 Jan 2023 17:35:11 +0300 Subject: [PATCH] style(fmt): update the derives in config module --- git-cliff-core/src/config.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/git-cliff-core/src/config.rs b/git-cliff-core/src/config.rs index fa6edaf5fa..5b7d51066c 100644 --- a/git-cliff-core/src/config.rs +++ b/git-cliff-core/src/config.rs @@ -59,11 +59,11 @@ pub struct GitConfig { pub filter_commits: Option, /// Blob pattern for git tags. pub tag_pattern: Option, - #[serde(with = "serde_regex", default)] /// Regex to skip matched tags. - pub skip_tags: Option, #[serde(with = "serde_regex", default)] + pub skip_tags: Option, /// Regex to ignore matched tags. + #[serde(with = "serde_regex", default)] pub ignore_tags: Option, /// Whether to sort tags topologically. pub topo_order: Option,