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
class CliArgument @JsonCreator internal constructor( // short argument representation like -h @param:JsonProperty("shortName") private val shortName: String )
should be
/** * @property shortName short argument representation like -h */ class CliArgument @JsonCreator internal constructor( @param:JsonProperty("shortName") private val shortName: String )
The text was updated successfully, but these errors were encountered:
Also I think now we don't check documentation on accessible fields declared as constructor parameter at all.
Sorry, something went wrong.
We also can have a customizable switch to suggest to replace KDoc on properties and use @property tag instead.
@property
Not added to a codestyle guide. Need to add it.
petertrr
Successfully merging a pull request may close this issue.
should be
The text was updated successfully, but these errors were encountered: