mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-13 20:16:30 +00:00
82fd65665f
bidichk checks for dangerous unicode character sequences (https://github.com/golangci/golangci-lint/pull/2330)
30 lines
703 B
Go
30 lines
703 B
Go
package analysisutil
|
|
|
|
import (
|
|
"go/ast"
|
|
"go/token"
|
|
"regexp"
|
|
|
|
"golang.org/x/tools/go/analysis"
|
|
)
|
|
|
|
// File finds *ast.File in pass.Files by pos.
|
|
func File(pass *analysis.Pass, pos token.Pos) *ast.File {
|
|
for _, f := range pass.Files {
|
|
if f.Pos() <= pos && pos <= f.End() {
|
|
return f
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
var genCommentRegexp = regexp.MustCompile(`^// Code generated .* DO NOT EDIT\.$`)
|
|
|
|
// IsGeneratedFile reports whether the file has been generated automatically.
|
|
// If file is nil, IsGeneratedFile will return false.
|
|
func IsGeneratedFile(file *ast.File) bool {
|
|
if file == nil || len(file.Comments) == 0 {
|
|
return false
|
|
}
|
|
return genCommentRegexp.MatchString(file.Comments[0].List[0].Text)
|
|
}
|