You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After following the steps outlined in the CONTRIBUTING.md file and executing the 'make lint' command, the following linter suggestions are generated:
cli/wallet/wallet.go:48:9: do not define dynamic errors, use wrapped static errors instead: "errors.New(\"invalid wallet provider provided\")" (err113)
return errors.New("invalid wallet provider provided")
^
cli/keychain/keychain_file.go:57:11: G306: Expect WriteFile permissions to be 0600 or less (gosec)
neErr = os.WriteFile(k.FilePath(), result, os.ModePerm)
^
cli/keychain/keychain_file.go:132:8: G306: Expect WriteFile permissions to be 0600 or less (gosec)
err = os.WriteFile(k.FilePath(), payload, os.ModePerm)
^
cli/config/config.go:209:9: do not define dynamic errors, use wrapped static errors instead: "fmt.Errorf(\"target network of the L1 node does not match the wasp-cli config\")" (err113)
err = fmt.Errorf("target network of the L1 node does not match the wasp-cli config")
The text was updated successfully, but these errors were encountered:
After following the steps outlined in the CONTRIBUTING.md file and executing the 'make lint' command, the following linter suggestions are generated:
The text was updated successfully, but these errors were encountered: