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