golangci-lint/pkg/result/processors/path_unix.go

9 lines
158 B
Go
Raw Normal View History

//go:build !windows
package processors
// normalizePathInRegex it's a noop function on Unix.
func normalizePathInRegex(path string) string {
return path
}