aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/Abirdcfly
diff options
context:
space:
mode:
authorTaras Madan <tarasmadan@google.com>2024-09-10 12:16:33 +0200
committerTaras Madan <tarasmadan@google.com>2024-09-10 14:05:26 +0000
commitc97c816133b42257d0bcf1ee4bd178bb2a7a2b9e (patch)
tree0bcbc2e540bbf8f62f6c17887cdd53b8c2cee637 /vendor/github.com/Abirdcfly
parent54e657429ab892ad06c90cd7c1a4eb33ba93a3dc (diff)
vendor: update
Diffstat (limited to 'vendor/github.com/Abirdcfly')
-rw-r--r--vendor/github.com/Abirdcfly/dupword/dupword.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/vendor/github.com/Abirdcfly/dupword/dupword.go b/vendor/github.com/Abirdcfly/dupword/dupword.go
index 9a78fb6cc..6838d7e75 100644
--- a/vendor/github.com/Abirdcfly/dupword/dupword.go
+++ b/vendor/github.com/Abirdcfly/dupword/dupword.go
@@ -128,7 +128,12 @@ func (a *analyzer) run(pass *analysis.Pass) (interface{}, error) {
}
func (a *analyzer) fixDuplicateWordInComment(pass *analysis.Pass, f *ast.File) {
+ isTestFile := strings.HasSuffix(pass.Fset.File(f.FileStart).Name(), "_test.go")
for _, cg := range f.Comments {
+ // avoid checking example outputs for duplicate words
+ if isTestFile && isExampleOutputStart(cg.List[0].Text) {
+ continue
+ }
var preLine *ast.Comment
for _, c := range cg.List {
update, keyword, find := a.Check(c.Text)
@@ -329,3 +334,10 @@ func ExcludeWords(word string) (exclude bool) {
}
return false
}
+
+func isExampleOutputStart(comment string) bool {
+ return strings.HasPrefix(comment, "// Output:") ||
+ strings.HasPrefix(comment, "// output:") ||
+ strings.HasPrefix(comment, "// Unordered output:") ||
+ strings.HasPrefix(comment, "// unordered output:")
+}