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.
Passed
Push — master ( 7d4f9b...4c84dc )
by Cedric
01:01
created

src/commands/preview.js   A

Complexity

Total Complexity 1
Complexity/F 1

Size

Lines of Code 8
Function Count 1

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 0
c 1
b 0
f 0
nc 1
dl 0
loc 8
rs 10
wmc 1
mnd 0
bc 1
fnc 1
bpm 1
cpm 1
noi 3

1 Function

Rating   Name   Duplication   Size   Complexity  
A module.exports 0 6 1
1
'use strict';
2
3
module.exports = function (file, options) {
4
    console.log('file', file);
0 ignored issues
show
Debugging Code introduced by
console.log looks like debug code. Are you sure you do not want to remove it?
Loading history...
introduced by
Unexpected console statement.
Loading history...
5
    console.log('options', options);
0 ignored issues
show
introduced by
Unexpected console statement.
Loading history...
6
7
    throw new Error('To implement')
8
}
9