-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
gopls: add and enable the slog analyzer
This analyzer is included in go/vet, and so gopls should have it as well. Change-Id: Ib5cbee44a1f38c4aa45d75bcaa7a345d88099d8e Reviewed-on: https://go-review.googlesource.com/c/tools/+/524764 Reviewed-by: Alan Donovan <[email protected]> Auto-Submit: Robert Findley <[email protected]> gopls-CI: kokoro <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]>
- Loading branch information
Showing
4 changed files
with
52 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 21 additions & 2 deletions
23
gopls/internal/regtest/marker/testdata/diagnostics/analyzers.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,51 @@ | ||
Test of warning diagnostics from various analyzers: | ||
tests, copylocks, printf, and timeformat. | ||
copylocks, printf, slog, tests, and timeformat. | ||
|
||
-- go.mod -- | ||
module example.com | ||
go 1.12 | ||
|
||
-- flags -- | ||
-min_go=go1.21 | ||
|
||
-- bad_test.go -- | ||
package analyzer | ||
|
||
import ( | ||
"fmt" | ||
"log/slog" | ||
"sync" | ||
"testing" | ||
"time" | ||
) | ||
|
||
func Testbad(t *testing.T) { //@diag("", re"Testbad has malformed name: first letter after 'Test' must not be lowercase") | ||
// copylocks | ||
func _() { | ||
var x sync.Mutex | ||
_ = x //@diag("x", re"assignment copies lock value to _: sync.Mutex") | ||
} | ||
|
||
// printf | ||
func _() { | ||
printfWrapper("%s") //@diag(re`printfWrapper\(.*\)`, re"example.com.printfWrapper format %s reads arg #1, but call has 0 args") | ||
} | ||
|
||
func printfWrapper(format string, args ...interface{}) { | ||
fmt.Printf(format, args...) | ||
} | ||
|
||
// slog | ||
func _() { | ||
slog.Info("msg", 1) //@diag("1", re`slog.Info arg "1" should be a string or a slog.Attr`) | ||
} | ||
|
||
// tests | ||
func Testbad(t *testing.T) { //@diag("", re"Testbad has malformed name: first letter after 'Test' must not be lowercase") | ||
} | ||
|
||
// timeformat | ||
func _() { | ||
now := time.Now() | ||
fmt.Println(now.Format("2006-02-01")) //@diag("2006-02-01", re"2006-02-01 should be 2006-01-02") | ||
} | ||
|