From 6455076ec1e66586c428f53f4ac67695e3739691 Mon Sep 17 00:00:00 2001 From: Oleksandr Redko Date: Wed, 18 Mar 2026 21:15:03 +0200 Subject: [PATCH] chore: Use structfield.Settings in check-structfield-settings --- tools/check-structfield-settings/main.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/check-structfield-settings/main.go b/tools/check-structfield-settings/main.go index db7e3591a3a..86ee177f7ae 100644 --- a/tools/check-structfield-settings/main.go +++ b/tools/check-structfield-settings/main.go @@ -125,8 +125,7 @@ type golangciConfig struct { Custom struct { Structfield struct { Settings struct { - AllowedTagNames []string `yaml:"allowed-tag-names"` - AllowedTagTypes []string `yaml:"allowed-tag-types"` + structfield.Settings `yaml:",inline"` } `yaml:"settings"` } `yaml:"structfield"` } `yaml:"custom"`