mirror of
https://github.com/scratchfoundation/golangci-lint.git
synced 2025-07-13 13:14:16 -04:00
9 lines
158 B
Go
9 lines
158 B
Go
|
//go:build !windows
|
||
|
|
||
|
package processors
|
||
|
|
||
|
// normalizePathInRegex it's a noop function on Unix.
|
||
|
func normalizePathInRegex(path string) string {
|
||
|
return path
|
||
|
}
|