diff --git a/.golangci.yml b/.golangci.yml index 54e8749b..84d3386d 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -86,3 +86,6 @@ linters-settings: allow-leading-space: true require-explanation: false require-specific: false + +service: + golangci-lint-version: 1.52.x \ No newline at end of file diff --git a/x/onft/client/cli/tx.go b/x/onft/client/cli/tx.go index 2e24bf50..57ee04e5 100644 --- a/x/onft/client/cli/tx.go +++ b/x/onft/client/cli/tx.go @@ -35,7 +35,6 @@ func NewTxCmd() *cobra.Command { return txCmd } -//nolintlint:goconst func GetCmdCreateDenom() *cobra.Command { cmd := &cobra.Command{ Use: "create [symbol]", @@ -122,7 +121,6 @@ $ %s tx onft create [symbol] --name= --schema= --description= --description= --chain-id= return cmd } -//nolintlint:goconst func GetCmdTransferONFT() *cobra.Command { cmd := &cobra.Command{ Use: "transfer [recipient] [denom-id] [onft-id]", @@ -417,7 +412,6 @@ $ %s tx onft transfer [recipient] [denom-id] [onft-id] --from= --chain return cmd } -//nolintlint:goconst func GetCmdBurnONFT() *cobra.Command { cmd := &cobra.Command{ Use: "burn [denom-id] [onft-id]",