It seems like the GitHub access token used for retrieving details about this repository from
GitHub became invalid. This might prevent certain types of inspections from being run (in
particular,
everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
This error message can for example pop up if you forget to assign the result
of a function call to a variable or pass it to another function:
functionsomeFunction(x){(x>0)?callFoo():callBar();}// JSHint expects you to assign the result to a variable:functionsomeFunction(x){varrs=(x>0)?callFoo():callBar();}// If you do not use the result, you could also use if statements in the// case above.functionsomeFunction(x){if(x>0){callFoo();}else{callBar();}}
This error message can for example pop up if you forget to assign the result of a function call to a variable or pass it to another function: