Skip to content

Commit

Permalink
Omit funlen linter for ExportKey
Browse files Browse the repository at this point in the history
  • Loading branch information
olegbespalov committed Oct 25, 2024
1 parent db890a5 commit f0ffa3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webcrypto/subtle_crypto.go
Original file line number Diff line number Diff line change
Expand Up @@ -865,7 +865,7 @@ func (sc *SubtleCrypto) ImportKey( //nolint:funlen // we have a lot of error han
//
// The `format` parameter identifies the format of the key data.
// The `key` parameter is the key to export, as a CryptoKey object.
func (sc *SubtleCrypto) ExportKey(
func (sc *SubtleCrypto) ExportKey( //nolint:funlen // we have a lot of error handling
format KeyFormat,
key sobek.Value,
) (*sobek.Promise, error) {
Expand Down

0 comments on commit f0ffa3d

Please sign in to comment.