-
Notifications
You must be signed in to change notification settings - Fork 586
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update linters so we don't have deprecated linters, and fix linter errors. * Update CHANGELOG.md * longer timeout * Update golangci.yml * fumpt * NewPacketId -> NewPacketID in keys_test.go * update changelog per feedback * Update modules/apps/29-fee/ibc_middleware.go Co-authored-by: Damian Nolan <damiannolan@gmail.com> * Update modules/core/ante/ante.go Co-authored-by: Damian Nolan <damiannolan@gmail.com> * Revert "Update modules/apps/29-fee/ibc_middleware.go" This reverts commit 882e9f1. * add godoc linter * add golint (deprecated) to check for godocs * alphebetize and add errcheck * fumpt * Added gofumpt linter * some error checks and one docs fix * RedundancyDecorator * added errors, resolved an issue with RedundancyDecorator * resolve unnecessary line blank * moved comment text inside else if * update store * Update CHANGELOG.md * newpacketID in ica test * gofumpt * assignOp: replace with * merge main * lint keeper_test.go * fix error checking in client keeper * "works on my pc" ;). * use go1.18 for golangci-lint * fumpt * Update modules/core/ante/ante.go Co-authored-by: colin axnér <25233464+colin-axner@users.noreply.github.com> * Update testing/mock/ibc_app.go Co-authored-by: colin axnér <25233464+colin-axner@users.noreply.github.com> * Update modules/light-clients/07-tendermint/types/update.go Co-authored-by: colin axnér <25233464+colin-axner@users.noreply.github.com> * goimports * fumpt * Update modules/core/02-client/abci.go Co-authored-by: colin axnér <25233464+colin-axner@users.noreply.github.com> * goimports * Update golangci.yml * fix newCosmosRelayer * try to fix abci codeql flagging * make ci same as main * make format * make format * fmt and proto-gen * update linter settings * omit unnecessary type declaration ibctmtypes.Fraction * adjust golangci-lint timeout * use blank for SetUpgradedConsensusState * remove sdk_test.go * Update modules/apps/29-fee/ibc_middleware.go Co-authored-by: Damian Nolan <damiannolan@gmail.com> * Update CHANGELOG.md Co-authored-by: Carlos Rodriguez <carlos@interchain.io> * Update CHANGELOG.md Co-authored-by: Carlos Rodriguez <carlos@interchain.io> * use declaration * Update CHANGELOG.md Co-authored-by: Carlos Rodriguez <carlos@interchain.io> * remove unneded space * update changelog * gofumpt * fix spelling and trace.go * we win * Update mock.go * fumpt * fumpt * gofumpt -w -l -modpath github.com/cosmos/ibc-go/v4 * write files * imports? * correct formatting of imports * gofumpt * fix metrics issue * add note about blank import of statik * added note for blank import so we don't need nolint * e2e imports * give e2e a full module path * use goimports * goimports * Delete .gitpod.yml * update module paths * linting * update proto * *.go Co-authored-by: Damian Nolan <damiannolan@gmail.com> Co-authored-by: colin axnér <25233464+colin-axner@users.noreply.github.com> Co-authored-by: Carlos Rodriguez <carlos@interchain.io> Co-authored-by: vuong <nguyenvuong1122000@gmail.com>
- Loading branch information
1 parent
79cd69f
commit 031f6a3
Showing
88 changed files
with
392 additions
and
618 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: golangci-lint | ||
on: | ||
push: | ||
tags: | ||
- v* | ||
branches: | ||
- main | ||
pull_request: | ||
permissions: | ||
contents: read | ||
# Optional: allow read access to pull request. Use with `only-new-issues` option. | ||
# pull-requests: read | ||
jobs: | ||
golangci: | ||
name: lint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/setup-go@v3 | ||
with: | ||
go-version: 1.18 | ||
- uses: actions/checkout@v3 | ||
- name: golangci-lint | ||
uses: golangci/golangci-lint-action@v3.2.0 | ||
with: | ||
version: latest | ||
args: --timeout 5m |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
module e2e | ||
module github.com/cosmos/ibc-go/e2e | ||
|
||
go 1.18 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.