From 6d91d473f24d6825170e494852b26ffc748fe542 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Sun, 14 May 2023 21:21:06 +0200 Subject: 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 --- .gitignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitignore (limited to '.gitignore') diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fd1a426 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/private/ -- cgit v1.2.3