We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gno mod
gno mod does not appear to apply the same level of strict validation of module names as go mod does.
go mod
% cat gno.mod module �xample.com/myproject go 1.20 % gno mod tidy % cat go.mod module �xample.com/myproject go 1.20 % go mod tidy go: malformed module path "�xample.com/myproject": invalid char '�'
See above sample modfile
See above
Tell us what should happen
gno mod should return error similar to go mod
Tell us what happens instead
Please paste any logs here that demonstrate the issue, if they exist
If you have an idea of how to fix this issue, please write it down here, so we can begin discussing it
The text was updated successfully, but these errors were encountered:
notJoon
Successfully merging a pull request may close this issue.
Validation of module names by
gno mod
is weakDescription
gno mod
does not appear to apply the same level of strict validation of module names asgo mod
does.Your environment
Steps to reproduce
See above sample modfile
See above
Expected behaviour
Tell us what should happen
gno mod
should return error similar togo mod
Actual behaviour
Tell us what happens instead
Logs
Please paste any logs here that demonstrate the issue, if they exist
Proposed solution
If you have an idea of how to fix this issue, please write it down here, so we can begin discussing it
The text was updated successfully, but these errors were encountered: