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 should prevent multi-indent when followed by multi-outdent. In this case, we have { and function, then on another line } followed by end function
This will require a lookahead to figure out if we're doing to outdent the same number of indents.
temp= {
key_9: { env: ["any"], themes: ["any"], runtimeCheck: function() asbooleanreturntrue end function }
key_10: { env: ["any"], themes: ["any"], runtimeCheck: function() asbooleanreturnfalse end function }
key_11: { env: ["dev"], themes: ["any"], runtimeCheck: function() asbooleanreturntrue end function }
key_12: { env: ["any"], themes: ["any"], runtimeCheck: function() asbooleanreturntrue end function }
}
Should be:
temp= {
key_9: { env: ["any"], themes: ["any"], runtimeCheck: function() asbooleanreturntrue end function }
key_10: { env: ["any"], themes: ["any"], runtimeCheck: function() asbooleanreturnfalse end function }
key_11: { env: ["dev"], themes: ["any"], runtimeCheck: function() asbooleanreturntrue end function }
key_12: { env: ["any"], themes: ["any"], runtimeCheck: function() asbooleanreturntrue end function }
}
The text was updated successfully, but these errors were encountered:
The formatter should prevent multi-indent when followed by multi-outdent. In this case, we have
{
andfunction
, then on another line}
followed byend function
This will require a lookahead to figure out if we're doing to outdent the same number of indents.
Should be:
The text was updated successfully, but these errors were encountered: