From dca642027803bf53a8e6ed9380ed1667b47acd0d Mon Sep 17 00:00:00 2001 From: "amazing.gao" Date: Tue, 22 Oct 2024 15:41:22 +0800 Subject: [PATCH] feat(pkg/config): change to case insensitive --- pkg/config/reader/json/values.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/config/reader/json/values.go b/pkg/config/reader/json/values.go index 1a296af..af85f8d 100644 --- a/pkg/config/reader/json/values.go +++ b/pkg/config/reader/json/values.go @@ -42,7 +42,7 @@ func newValues(ch *source.ChangeSet) (reader.Values, error) { EscapeHTML: true, SortMapKeys: true, ValidateJsonRawMessage: true, - CaseSensitive: true, + CaseSensitive: false, TagKey: defaultTagKey, }.Froze()