chore: Enable gofmt in linter, fix all outstanding errors (#727)

Former-commit-id: 1d9477f510bb2d6ada4b720933f113f24c25913e
Former-commit-id: b22ff272ca
This commit is contained in:
LINKIWI 2024-01-27 19:29:10 -08:00 committed by GitHub
parent ca55e5ba94
commit 893f3f6df6
4 changed files with 15 additions and 14 deletions

View file

@ -50,6 +50,7 @@ linters:
- goconst
- gocritic
- gocyclo
- gofmt
- goprintffuncname
- gosimple
- govet

View file

@ -57,7 +57,7 @@ func (ctrl *V1Controller) HandleGroupUpdate() errchain.HandlerFunc {
ok := ctrl.svc.Currencies.IsSupported(body.Currency)
if !ok {
return repo.Group{}, validate.NewFieldErrors(
validate.NewFieldError("currency", "currency '" + body.Currency + "' is not supported"),
validate.NewFieldError("currency", "currency '"+body.Currency+"' is not supported"),
)
}