Standardize linting file and fix or ignore lots of linting errors

pull/1062/head
max furman 2 years ago
parent 99299faeeb
commit 33458c88aa
No known key found for this signature in database

@ -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.

Loading…
Cancel
Save