build(deps): bump github.com/catenacyber/perfsprint from 0.3.0 to 0.3.1 (#4199)

Co-authored-by: Fernandez Ludovic <ldez@users.noreply.github.com>
This commit is contained in:
dependabot[bot] 2023-11-13 16:05:13 +01:00 committed by GitHub
parent b3146552ac
commit be5c2e930d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 36 additions and 14 deletions

View file

@ -106,6 +106,9 @@ var defaultLintersSettings = LintersSettings{
},
PerfSprint: PerfSprintSettings{
IntConversion: true,
ErrError: false,
ErrorF: true,
SprintF1: true,
},
Prealloc: PreallocSettings{
Simple: true,
@ -691,6 +694,9 @@ type ParallelTestSettings struct {
type PerfSprintSettings struct {
IntConversion bool `mapstructure:"int-conversion"`
ErrError bool `mapstructure:"err-error"`
ErrorF bool `mapstructure:"errorf"`
SprintF1 bool `mapstructure:"sprintf1"`
}
type PreallocSettings struct {