We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
goimports is a tool that will keep our imports clean. We could use it to automatically add or remove imports where needed.
This is a tool to keep imports consistent. Some of our imports are not in order at the moment. This tool would fix these items.
https://pkg.go.dev/golang.org/x/tools/cmd/goimports
Add goimports to our Makefile so that it is run when we perform a build of our daemon. See the Axelar Makefile for an example:
https://github.com/axelarnetwork/axelar-core/blob/main/Makefile#L41
The text was updated successfully, but these errors were encountered:
goimports is part of https://github.com/golangci/golangci-lint - so we should just update the config.
Sorry, something went wrong.
No branches or pull requests
Summary
goimports is a tool that will keep our imports clean. We could use it to automatically add or remove imports where needed.
Problem Definition
This is a tool to keep imports consistent. Some of our imports are not in order at the moment. This tool would fix these items.
https://pkg.go.dev/golang.org/x/tools/cmd/goimports
Proposal
Add goimports to our Makefile so that it is run when we perform a build of our daemon. See the Axelar Makefile for an example:
https://github.com/axelarnetwork/axelar-core/blob/main/Makefile#L41
For Admin Use
The text was updated successfully, but these errors were encountered: