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
remove_if_then_else_expr
Similar to #202, a new rule called remove_if_then_else_expr would rewrite the following code from
local maxValue = if a > b then a else b
to
local maxValue if a > b then maxValue = a else maxValue = b end
The official Luau syntax can be found here.
The text was updated successfully, but these errors were encountered:
Satisfied by #207 and #208, whoops.
Sorry, something went wrong.
remove_if_expression
No branches or pull requests
Similar to #202, a new rule called
remove_if_then_else_expr
would rewrite the following code fromto
The official Luau syntax can be found here.
The text was updated successfully, but these errors were encountered: