diff options
| author | Teddy Wing | 2023-05-14 21:21:06 +0200 |
|---|---|---|
| committer | Teddy Wing | 2023-05-14 21:26:36 +0200 |
| commit | 6d91d473f24d6825170e494852b26ffc748fe542 (patch) | |
| tree | b4d5ec4ca1f1a46390407b0023eebfe6232ca2b2 /go.sum | |
| parent | 27b71d7c8fdedca306885d078be5a35a39669907 (diff) | |
| download | gocapturedrefrace-6d91d473f24d6825170e494852b26ffc748fe542.tar.bz2 | |
Find `go` statements using Go analyzer
Build a basic Go analyser that finds `go` statements.
Currently testing this with:
$ go run ./cmd/gocapturedrefrace ./testdata/
Using the following tutorials as a guide:
* https://arslan.io/2019/06/13/using-go-analysis-to-write-a-custom-linter/
* https://scribe.rip/codex/writing-custom-linter-in-go-54ef6f8080
Diffstat (limited to 'go.sum')
| -rw-r--r-- | go.sum | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -0,0 +1,7 @@ +golang.org/x/mod v0.10.0 h1:lFO9qtOdlre5W1jxS3r/4szv2/6iXxScdzjoBMXNhYk= +golang.org/x/mod v0.10.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= +golang.org/x/sync v0.2.0 h1:PUR+T4wwASmuSTYdKjYHI5TD22Wy5ogLU5qZCOLxBrI= +golang.org/x/sys v0.8.0 h1:EBmGv8NaZBZTWvrbjNoL6HVt+IVy3QDQpJs7VRIw3tU= +golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/tools v0.9.1 h1:8WMNJAz3zrtPmnYC7ISf5dEn3MT0gY7jBJfw27yrrLo= +golang.org/x/tools v0.9.1/go.mod h1:owI94Op576fPu3cIGQeHs3joujW/2Oc6MtlxbF5dfNc= |
