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
Our coding style enforces strict comparisons with the literal preceding the variable/function to check. Here is part of a function that checks for numeric input: if( true === /^\d*\.?\d*$/.test( input ) ) return true;
PHPCS does not recognize the regular expression literal when tokenizing the above code.