diff options
author | techknowlogick <techknowlogick@gitea.io> | 2022-08-17 19:25:25 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-18 02:25:25 +0300 |
commit | d8e6c9912594dfa03d55a021d538b6b0bd0561ee (patch) | |
tree | bebedc28da71c6b284ea8a80b70cccf4d58d13d4 /.golangci.yml | |
parent | 208b4ee417c528f11583bb84f3f3481bfad12ac7 (diff) | |
download | gitea-d8e6c9912594dfa03d55a021d538b6b0bd0561ee.tar.gz gitea-d8e6c9912594dfa03d55a021d538b6b0bd0561ee.zip |
Add badge capabilities to users (#20607)
Co-authored-by: silverwind <me@silverwind.io>
Co-authored-by: zeripath <art27@cantab.net>
Co-authored-by: John Olheiser <john.olheiser@gmail.com>
Diffstat (limited to '.golangci.yml')
-rw-r--r-- | .golangci.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.golangci.yml b/.golangci.yml index 6e80af8c0e..982ab06f0b 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -171,3 +171,7 @@ issues: - path: models/user/openid.go linters: - golint + - path: models/user/badge.go + linters: + - revive + text: "exported: type name will be used as user.UserBadge by other packages, and that stutters; consider calling this Badge" |