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
Autosemicolon is one of the most important rules in the package. It really saves time while coding.
However, there are some cases that are not yet covered, such as those involving comments. As a result, it cannot add a semicolon in expressions like these:
$a = 1//
$B = 2;
$a = 1
//
$B = 2;
$a = 1
//
/** other comment */
$B = 2;
The text was updated successfully, but these errors were encountered:
Autosemicolon is one of the most important rules in the package. It really saves time while coding.
However, there are some cases that are not yet covered, such as those involving comments. As a result, it cannot add a semicolon in expressions like these:
The text was updated successfully, but these errors were encountered: