-
Notifications
You must be signed in to change notification settings - Fork 113
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Go module support, cleanup Makefile #266
Conversation
module github.com/zmap/zlint | ||
|
||
require ( | ||
github.com/asaskevich/govalidator v0.0.0-20180720115003-f9ffefc3facf |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks like this dependency is only present because govalidator.IsURL
is being used in util/fqdn.go
. Similarly zcrypto
carries a govalidator
dep just for IsURL
.
It might be nice to knock a dependency off of both projects by implementing this one function in zcrypto
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I opened zmap/zcrypto#187 on zcrypto
for this.
I agree regarding implementing |
This branch adds support for Go modules and cleans up a little bit. At a high level:
zlint-gtld-update
to the build artifactsmakefile
Resolves #264