aboutsummaryrefslogtreecommitdiffstats
path: root/models/user
diff options
context:
space:
mode:
authorsilverwind <me@silverwind.io>2023-04-20 04:08:01 +0200
committerGitHub <noreply@github.com>2023-04-19 22:08:01 -0400
commit938b59199480d1b3730388982eb87d592e976849 (patch)
treefcbbeea0c67dca1cda1ef87a6b3c0748105a8610 /models/user
parent594efb9b669fb12e8a0306f76c740fa72c1a80f1 (diff)
downloadgitea-938b59199480d1b3730388982eb87d592e976849.tar.gz
gitea-938b59199480d1b3730388982eb87d592e976849.zip
Remove most path-based golangci exclusions (#24214)
They are non-obvious and do not survive refactor. Will replace with `//nolint` comments after CI results are in.
Diffstat (limited to 'models/user')
-rw-r--r--models/user/badge.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/models/user/badge.go b/models/user/badge.go
index 948b0b1065..ee52b44cf5 100644
--- a/models/user/badge.go
+++ b/models/user/badge.go
@@ -17,7 +17,7 @@ type Badge struct {
}
// UserBadge represents a user badge
-type UserBadge struct {
+type UserBadge struct { //nolint:revive
ID int64 `xorm:"pk autoincr"`
BadgeID int64
UserID int64 `xorm:"INDEX"`