mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2026-04-15 01:41:56 +00:00
bidichk checks for dangerous unicode character sequences (https://github.com/golangci/golangci-lint/pull/2330)
8 lines
105 B
Go
8 lines
105 B
Go
package encoding
|
|
|
|
type encodingError string
|
|
|
|
func (e encodingError) Error() string {
|
|
return string(e)
|
|
}
|