diff options
author | silverwind <me@silverwind.io> | 2024-04-22 13:48:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-22 11:48:42 +0000 |
commit | 74f0c84fa4245a20ce6fb87dac1faf2aeeded2a2 (patch) | |
tree | 94b0356bea5ad1cd24a523947cf001509a973be1 /models/user/user.go | |
parent | aff7b7bdd285cc1fcabea774f153886e11ae9f5d (diff) | |
download | gitea-74f0c84fa4245a20ce6fb87dac1faf2aeeded2a2.tar.gz gitea-74f0c84fa4245a20ce6fb87dac1faf2aeeded2a2.zip |
Enable more `revive` linter rules (#30608)
Noteable additions:
- `redefines-builtin-id` forbid variable names that shadow go builtins
- `empty-lines` remove unnecessary empty lines that `gofumpt` does not
remove for some reason
- `superfluous-else` eliminate more superfluous `else` branches
Rules are also sorted alphabetically and I cleaned up various parts of
`.golangci.yml`.
Diffstat (limited to 'models/user/user.go')
-rw-r--r-- | models/user/user.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/models/user/user.go b/models/user/user.go index d459ec239e..7056aecab0 100644 --- a/models/user/user.go +++ b/models/user/user.go @@ -988,9 +988,8 @@ func GetUserIDsByNames(ctx context.Context, names []string, ignoreNonExistent bo if err != nil { if ignoreNonExistent { continue - } else { - return nil, err } + return nil, err } ids = append(ids, u.ID) } |