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 current config set radix to error but in many examples of our code we are disabling the rule in order to avoid having to specify the radix of 10 each time. according to eslint documentation this rule is to avoid misinterpretation when the number starts by 0 in javascript versions prior to es5, but we are targeting es2017, so maybe this rule is not useful for us and we can disable it.
The text was updated successfully, but these errors were encountered:
the current config set
radix
to error but in many examples of our code we are disabling the rule in order to avoid having to specify the radix of 10 each time. according to eslint documentation this rule is to avoid misinterpretation when the number starts by 0 in javascript versions prior to es5, but we are targeting es2017, so maybe this rule is not useful for us and we can disable it.The text was updated successfully, but these errors were encountered: