Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
gjermundgaraba committed Nov 24, 2024
1 parent 974644d commit 36e2d06
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ issues:
- linters:
- staticcheck
text: "SA1019:" # silence errors on usage of deprecated funcs
- text: "G115: integer overflow conversion"
linters:
- gosec

max-issues-per-linter: 10000
max-same-issues: 10000
Expand Down
3 changes: 2 additions & 1 deletion modules/apps/transfer/v2/keeper/msg_server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@ import (
"encoding/json"
"time"

"github.com/cosmos/solidity-ibc-eureka/abigen/ics20lib"

sdkmath "cosmossdk.io/math"

sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/solidity-ibc-eureka/abigen/ics20lib"

transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types"
clienttypes "github.com/cosmos/ibc-go/v9/modules/core/02-client/types"
Expand Down
4 changes: 2 additions & 2 deletions modules/core/04-channel/v2/types/commitment_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ package types_test
import (
"encoding/hex"
"encoding/json"
fmt "fmt"
"fmt"
"math/big"
"testing"

"github.com/cosmos/solidity-ibc-eureka/abigen/ics20lib"
"github.com/stretchr/testify/require"

transfertypes "github.com/cosmos/ibc-go/v9/modules/apps/transfer/types"
"github.com/cosmos/ibc-go/v9/modules/core/04-channel/v2/types"
"github.com/cosmos/solidity-ibc-eureka/abigen/ics20lib"
)

// TestCommitPacket is primarily used to document the expected commitment output
Expand Down

0 comments on commit 36e2d06

Please sign in to comment.