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
Bug: ESlint error: Unary operator ++ used __ no plus plus.
Possible solution: ESlint does not accept ++ operator. ESlint check will pass if you change the ++ operator to +=1 for example: for (let i = 0; i < ArraycardsInfo.length; i += 1).
The text was updated successfully, but these errors were encountered:
Bug: ESlint error: Unary operator ++ used __ no plus plus.
Possible solution: ESlint does not accept ++ operator. ESlint check will pass if you change the ++ operator to +=1 for example: for (let i = 0; i < ArraycardsInfo.length; i += 1).
The text was updated successfully, but these errors were encountered: