gordonklaus / ineffassign

Detect ineffectual assignments in Go code.
MIT License
390 stars 22 forks source link

Minor: Support go standard use of ./... #40

Closed davewichers closed 3 years ago

davewichers commented 4 years ago

Most go tools support the use of ./... to mean scan from the current directory down as far as you can go. However, ineffassign responds with this: "app/dir/...: no such file or directory"

So instead I had to use ./* which seems to work fine by the way. However, for consistency with other go tools can you add support for ./... too?

guerinoni commented 3 years ago

@gordonklaus I think this is closed...

gordonklaus commented 3 years ago

fixed by #51