Skip to content

Commit 1b791de

Browse files
build(deps): bump github.com/tetafro/godot from 1.5.0 to 1.5.1 (#5770)
Co-authored-by: Fernandez Ludovic <[email protected]>
1 parent 896c041 commit 1b791de

File tree

5 files changed

+26
-3
lines changed

5 files changed

+26
-3
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ require (
109109
github.com/stbenjam/no-sprintf-host-port v0.2.0
110110
github.com/stretchr/testify v1.10.0
111111
github.com/tdakkota/asciicheck v0.4.1
112-
github.com/tetafro/godot v1.5.0
112+
github.com/tetafro/godot v1.5.1
113113
github.com/timakin/bodyclose v0.0.0-20241222091800-1db5c5ca4d67
114114
github.com/timonwong/loggercheck v0.11.0
115115
github.com/tomarrell/wrapcheck/v2 v2.11.0

go.sum

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/golinters/godot/testdata/fix/in/godot.go

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,10 @@ func godot(a, b int) int {
1111
// Nothing to do here
1212
return a + b
1313
}
14+
15+
// Foo Lorem ipsum dolor sit amet, consectetur adipiscing elit.
16+
// Aenean rhoncus odio enim, et pulvinar libero ultrices quis.
17+
// Nulla at erat tellus. Maecenas id dapibus velit, ut porttitor ipsum
18+
func Foo() {
19+
// nothing to do here
20+
}

pkg/golinters/godot/testdata/fix/out/godot.go

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,10 @@ func godot(a, b int) int {
1111
// Nothing to do here
1212
return a + b
1313
}
14+
15+
// Foo Lorem ipsum dolor sit amet, consectetur adipiscing elit.
16+
// Aenean rhoncus odio enim, et pulvinar libero ultrices quis.
17+
// Nulla at erat tellus. Maecenas id dapibus velit, ut porttitor ipsum.
18+
func Foo() {
19+
// nothing to do here
20+
}

pkg/golinters/godot/testdata/godot.go

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,12 @@ package testdata
77
func Godot() {
88
// nothing to do here
99
}
10+
11+
// want +4 "Comment should end in a period"
12+
13+
// Foo Lorem ipsum dolor sit amet, consectetur adipiscing elit.
14+
// Aenean rhoncus odio enim, et pulvinar libero ultrices quis.
15+
// Nulla at erat tellus. Maecenas id dapibus velit, ut porttitor ipsum
16+
func Foo() {
17+
// nothing to do here
18+
}

0 commit comments

Comments
 (0)