errname icon indicating copy to clipboard operation
errname copied to clipboard

The Golang linter that checks that sentinel errors are prefixed with the `Err` and error types are suffixed with the `Error`.

Results 1 errname issues
Sort by recently updated
recently updated
newest added

Why is there an assumption of using the `XxxErrors` format for an array or slice? In many cases, it makes more sense to name them `XxxError`, for example: ```go package...