mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-04 01:10:49 +01:00
Enable linter [rule.modifies-value-receiver] and refactor RoleDescriptor (#18093)
This commit is contained in:
parent
4da2eabd7f
commit
a2afd38f25
2 changed files with 2 additions and 2 deletions
|
@ -24,3 +24,4 @@ warningCode = 1
|
|||
[rule.indent-error-flow]
|
||||
[rule.errorf]
|
||||
[rule.duplicated-imports]
|
||||
[rule.modifies-value-receiver]
|
||||
|
|
|
@ -123,8 +123,7 @@ const (
|
|||
|
||||
// WithRole enable a specific tag on the RoleDescriptor.
|
||||
func (rd RoleDescriptor) WithRole(role RoleDescriptor) RoleDescriptor {
|
||||
rd |= (1 << role)
|
||||
return rd
|
||||
return rd | (1 << role)
|
||||
}
|
||||
|
||||
func stringToRoleDescriptor(role string) RoleDescriptor {
|
||||
|
|
Loading…
Reference in a new issue