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
The formatter removes parenthesis around pack parameters that contain only one type, which can cause an error with linters: Type parameters must come before type pack parameters
The formatter removes parenthesis around pack parameters that contain only one type, which can cause an error with linters:
Type parameters must come before type pack parameters
For example, if you set up the following code:
StyLua will format it to this:
Without the parenthesis around pack parameters, the type of
fn
will incorrectly resolve to(string, number) -> ()
in this case with Luau LSP.The text was updated successfully, but these errors were encountered: