You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running the formatter here changed the code's meaning/purpose. It's a bit of an edge case. Changing it to have an if instead of "or function() end" made the formatter work properly
The text was updated successfully, but these errors were encountered:
This definitely isn't an edge case! Using semicolons to end statements in Lua is commonplace in many projects. The most common case is when you must begin a statement with a parenthesis, in which you need a semicolon to terminate the previous statement otherwise Lua won't parse it as it's ambiguous syntax.
Running the formatter here changed the code's meaning/purpose. It's a bit of an edge case. Changing it to have an if instead of "or function() end" made the formatter work properly
The text was updated successfully, but these errors were encountered: