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