Standardize linting file and fix or ignore lots of linting errors

This commit is contained in:
max furman 2022-08-23 12:43:48 -07:00
parent 99299faeeb
commit 33458c88aa
No known key found for this signature in database

View file

@ -38,10 +38,8 @@ type Claimer struct {
// NewClaimer initializes a new claimer with the given claims.
func NewClaimer(claims *Claims, global Claims) (*Claimer, error) {
c := &Claimer{global: global, claims: claims}
if err := c.Validate(); err != nil {
return nil, err
}
return c, nil
err := c.Validate()
return c, err
}
// Claims returns the merge of the inner and global claims.