GitHub Access Token became invalid

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.

Issues (34)

webpack/webpack.test.js (1 issue)

Labels
Severity
1
const sourceFolderContext = require.context('../test', true, /\.js/);
2
const componentsContext = require.context('../src/', true, /\.js/);
3
4
sourceFolderContext.keys().forEach(sourceFolderContext);
5
componentsContext.keys().forEach(componentsContext);
6
7
module.exports = context;
0 ignored issues
show
The variable context seems to be never declared. If this is a global, consider adding a /** global: context */ comment.

This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.

To learn more about declaring variables in Javascript, see the MDN.

Loading history...
8