build(deps): bump github.com/ghostiam/protogetter from 0.2.3 to 0.3.1 (#4167)

This commit is contained in:
Vladislav Fursov 2023-11-05 16:10:43 +04:00 committed by GitHub
parent f17fef34b2
commit 97cb9054a2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 46 additions and 5 deletions

View file

@ -231,6 +231,7 @@ type LintersSettings struct {
Prealloc PreallocSettings
Predeclared PredeclaredSettings
Promlinter PromlinterSettings
ProtoGetter ProtoGetterSettings
Reassign ReassignSettings
Revive ReviveSettings
RowsErrCheck RowsErrCheckSettings
@ -707,6 +708,12 @@ type PromlinterSettings struct {
DisabledLinters []string `mapstructure:"disabled-linters"`
}
type ProtoGetterSettings struct {
SkipGeneratedBy []string `mapstructure:"skip-generated-by"`
SkipFiles []string `mapstructure:"skip-files"`
SkipAnyGenerated bool `mapstructure:"skip-any-generated"`
}
type ReassignSettings struct {
Patterns []string `mapstructure:"patterns"`
}