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
tag_name:"..."
In my application I'm using the flags package. It has the possiblity to specify the allowed values for a paramter via choice:"..." in the struct tags.
flags
choice:"..."
The issue here is, when multiple tags with the same name exist, all but the first are removed.
Format is done but tags are left in place.
type CLI struct { ParamLevel string `short:"L" long:"level" choice:"info" choice:"warn" choice:"error" ... description:"..." }
type CLI struct { ParamLevel string `short:"L" long:"level" choice:"info" ... description:"..." }
Format is done but same name tags are removed and only first occurence is left.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In my application I'm using the
flags
package.It has the possiblity to specify the allowed values for a paramter via
choice:"..."
in the struct tags.The issue here is, when multiple tags with the same name exist, all but the first are removed.
Expected:
Format is done but tags are left in place.
Actual
Format is done but same name tags are removed and only first occurence is left.
The text was updated successfully, but these errors were encountered: