mirror of
https://github.com/hay-kot/homebox.git
synced 2024-11-22 00:25:43 +00:00
chore: Enable gofmt in linter, fix all outstanding errors (#727)
Former-commit-id: 1d9477f510bb2d6ada4b720933f113f24c25913e
This commit is contained in:
parent
ca55e5ba94
commit
b22ff272ca
6 changed files with 15 additions and 15 deletions
|
@ -50,6 +50,7 @@ linters:
|
||||||
- goconst
|
- goconst
|
||||||
- gocritic
|
- gocritic
|
||||||
- gocyclo
|
- gocyclo
|
||||||
|
- gofmt
|
||||||
- goprintffuncname
|
- goprintffuncname
|
||||||
- gosimple
|
- gosimple
|
||||||
- govet
|
- govet
|
||||||
|
|
BIN
backend/api
Executable file
BIN
backend/api
Executable file
Binary file not shown.
|
@ -1 +0,0 @@
|
||||||
2aa21deab73854398ee7954e2ad3bfb7452bbac0
|
|
|
@ -57,7 +57,7 @@ func (ctrl *V1Controller) HandleGroupUpdate() errchain.HandlerFunc {
|
||||||
ok := ctrl.svc.Currencies.IsSupported(body.Currency)
|
ok := ctrl.svc.Currencies.IsSupported(body.Currency)
|
||||||
if !ok {
|
if !ok {
|
||||||
return repo.Group{}, validate.NewFieldErrors(
|
return repo.Group{}, validate.NewFieldErrors(
|
||||||
validate.NewFieldError("currency", "currency '" + body.Currency + "' is not supported"),
|
validate.NewFieldError("currency", "currency '"+body.Currency+"' is not supported"),
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue