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
Example:
sub testTypeAnnotation(doOption = false) end sub
Currently, this would fail the type-annotation rule, but doOption param would be known as a boolean, and adding a type to it is superfluous
type-annotation
doOption
boolean
Perhaps we could add a args-allow-default and all-allow-default options for the type-annotation rule
args-allow-default
all-allow-default
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Example:
Currently, this would fail the
type-annotation
rule, butdoOption
param would be known as aboolean
, and adding a type to it is superfluousPerhaps we could add a
args-allow-default
andall-allow-default
options for thetype-annotation
ruleThe text was updated successfully, but these errors were encountered: