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
function bar()
{
if (foo)
{
a();
b();
}
else {
b();
a();
}
}
produces this warning: 3:2 warning Opening curly brace appears on the same line as controlling statement brace-rules/brace-on-same-line
So it points to the if (foo), but it should point to else {.
The text was updated successfully, but these errors were encountered:
There is a slight error in your plugin:
Using that config
with this code:
produces this warning:
3:2 warning Opening curly brace appears on the same line as controlling statement brace-rules/brace-on-same-line
So it points to the
if (foo)
, but it should point toelse {
.The text was updated successfully, but these errors were encountered: