style: lint wasmd in the same manner as cosmos-sdk (#1537)

* golangci-lint run ./... --fix

* linting completed

* use the CosmWasm repo as part of the gci config
This commit is contained in:
Jacob Gadikian
2023-07-31 21:53:20 +08:00
committed by GitHub
parent 36416def20
commit 8627f85275
125 changed files with 801 additions and 496 deletions

View File

@@ -8,12 +8,12 @@ import (
"strings"
"testing"
wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types"
dbm "github.com/cometbft/cometbft-db"
abci "github.com/cometbft/cometbft/abci/types"
"github.com/cometbft/cometbft/libs/log"
tmproto "github.com/cometbft/cometbft/proto/tendermint/types"
"github.com/stretchr/testify/require"
"github.com/cosmos/cosmos-sdk/baseapp"
"github.com/cosmos/cosmos-sdk/client/flags"
"github.com/cosmos/cosmos-sdk/server"
@@ -35,7 +35,8 @@ import (
simcli "github.com/cosmos/cosmos-sdk/x/simulation/client/cli"
slashingtypes "github.com/cosmos/cosmos-sdk/x/slashing/types"
stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types"
"github.com/stretchr/testify/require"
wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types"
)
// SimAppChainID hardcoded chainID for simulation
@@ -255,6 +256,7 @@ func TestAppSimulationAfterImport(t *testing.T) {
}
func setupSimulationApp(t *testing.T, msg string) (simtypes.Config, dbm.DB, simtestutil.AppOptionsMap, *WasmApp) {
t.Helper()
config := simcli.NewConfigFromFlags()
config.ChainID = SimAppChainID