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
For now, we do not use tools to organize imported packages.
For example, baseapp/helpers.go
import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/tendermint/tendermint/abci/server" abci "github.com/tendermint/tendermint/abci/types" cmn "github.com/tendermint/tendermint/libs/common" )
the proper format should be
import ( cmn "github.com/tendermint/tendermint/libs/common" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/tendermint/tendermint/abci/server" abci "github.com/tendermint/tendermint/abci/types" )
the general idea to organize imported packages is to group imported packages as three groups:
so it would be better to add goimports tools to makefile.
The text was updated successfully, but these errors were encountered:
As I already use goimports, I'm a big fan of this 👍
goimports
Sorry, something went wrong.
yeah, it would be better to use tools for this stuff :)
Seems goimports has been added, @alexanderbez can we close this issue?
No branches or pull requests
For now, we do not use tools to organize imported packages.
For example, baseapp/helpers.go
the proper format should be
the general idea to organize imported packages is to group imported packages as three groups:
so it would be better to add goimports tools to makefile.
The text was updated successfully, but these errors were encountered: