golangci-lint/pkg/result/processors/path_unix.go
2022-08-24 22:10:51 +02:00

8 lines
158 B
Go

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