From c7d7f10bdff703e4a3c0414e8a33d4e45c91eb35 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Sat, 4 Jul 2020 11:12:55 +0200 Subject: go.mod: vendor golangci-lint --- vendor/github.com/golangci/ineffassign/README.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 vendor/github.com/golangci/ineffassign/README.md (limited to 'vendor/github.com/golangci/ineffassign/README.md') diff --git a/vendor/github.com/golangci/ineffassign/README.md b/vendor/github.com/golangci/ineffassign/README.md new file mode 100644 index 000000000..6dcb9f0cc --- /dev/null +++ b/vendor/github.com/golangci/ineffassign/README.md @@ -0,0 +1,4 @@ +# ineffassign +Detect ineffectual assignments in Go code. + +This tool misses some cases because does not consider any type information in its analysis. (For example, assignments to struct fields are never marked as ineffectual.) It should, however, never give any false positives. -- cgit mrf-deployment