cosmos / ibc-go

Inter-Blockchain Communication Protocol (IBC) implementation in Golang.
https://ibc.cosmos.network/
MIT License
548 stars 586 forks source link

Separate import statements by type #382

Closed seantking closed 2 years ago

seantking commented 3 years ago

Summary

Following on from the comment suggesting to update import statements.

For example, the imports here should be refactored to look like:

import (
        // standard library imports
    "fmt"
    "testing"

        // external library imports
    "github.com/stretchr/testify/require"
    abci "github.com/tendermint/tendermint/abci/types"

         // ibc-go library imports
    "github.com/cosmos/ibc-go/modules/core/23-commitment/types"
)

This needs to be done throughout most of the repo.


For Admin Use

nickmancari commented 3 years ago

I can do this, I'd love to help out.

crodriguezvega commented 2 years ago

Hi @nickmancari. Are you still willing to work on this? No problem if you can't!