mirror of
https://github.com/scratchfoundation/golangci-lint.git
synced 2025-07-09 11:14:12 -04:00
8 lines
158 B
Go
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
|
|
}
|