Skip to content

Commit

Permalink
fix: skip lint typecheck
Browse files Browse the repository at this point in the history
  • Loading branch information
misyuari committed Oct 26, 2023
1 parent 0e24da6 commit 1381994
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chainable_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ func (db *DB) AdditionalSelect(selects interface{}) (tx *DB) {
case clause.Column:
tx.Statement.AdditionalSelects = []clause.Column{v}
default:
tx.AddError(fmt.Errorf("unsupported additional select args %v", selects))
tx.AddError(fmt.Errorf("unsupported additional select args %v", selects)) //nolint:typecheck,errcheck
}

return
Expand Down

0 comments on commit 1381994

Please sign in to comment.