├── .github └── workflows │ ├── assign.yml │ ├── release.yml │ ├── review.yml │ └── test.yml ├── .gitignore ├── .golangci.yml ├── .goreleaser.yml ├── LICENSE ├── Makefile ├── README.md ├── cmd └── looppointer │ └── main.go ├── go.mod ├── go.sum ├── looppointer.go ├── looppointer_test.go └── testdata ├── parse └── main.go └── src ├── fixed └── fixed.go ├── issue7 └── issue7.go ├── nested └── nested.go ├── nolint └── nolint.go ├── simple └── simple.go ├── slice └── slice.go └── strslice └── strslice.go /.github/workflows/assign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyoh86/looppointer/HEAD/.github/workflows/assign.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyoh86/looppointer/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyoh86/looppointer/HEAD/.github/workflows/review.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyoh86/looppointer/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyoh86/looppointer/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyoh86/looppointer/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyoh86/looppointer/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyoh86/looppointer/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyoh86/looppointer/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyoh86/looppointer/HEAD/README.md -------------------------------------------------------------------------------- /cmd/looppointer/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyoh86/looppointer/HEAD/cmd/looppointer/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyoh86/looppointer/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyoh86/looppointer/HEAD/go.sum -------------------------------------------------------------------------------- /looppointer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyoh86/looppointer/HEAD/looppointer.go -------------------------------------------------------------------------------- /looppointer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyoh86/looppointer/HEAD/looppointer_test.go -------------------------------------------------------------------------------- /testdata/parse/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyoh86/looppointer/HEAD/testdata/parse/main.go -------------------------------------------------------------------------------- /testdata/src/fixed/fixed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyoh86/looppointer/HEAD/testdata/src/fixed/fixed.go -------------------------------------------------------------------------------- /testdata/src/issue7/issue7.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyoh86/looppointer/HEAD/testdata/src/issue7/issue7.go -------------------------------------------------------------------------------- /testdata/src/nested/nested.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyoh86/looppointer/HEAD/testdata/src/nested/nested.go -------------------------------------------------------------------------------- /testdata/src/nolint/nolint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyoh86/looppointer/HEAD/testdata/src/nolint/nolint.go -------------------------------------------------------------------------------- /testdata/src/simple/simple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyoh86/looppointer/HEAD/testdata/src/simple/simple.go -------------------------------------------------------------------------------- /testdata/src/slice/slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyoh86/looppointer/HEAD/testdata/src/slice/slice.go -------------------------------------------------------------------------------- /testdata/src/strslice/strslice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyoh86/looppointer/HEAD/testdata/src/strslice/strslice.go --------------------------------------------------------------------------------