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.

webpack/webpack.test.js   A
last analyzed

Complexity

Total Complexity 0
Complexity/F 0

Size

Lines of Code 7
Function Count 0

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 0
wmc 0
nc 1
mnd 0
bc 0
fnc 0
dl 0
loc 7
rs 10
bpm 0
cpm 0
noi 1
c 0
b 0
f 0
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
Bug introduced by
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