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.
Completed
Push — master ( 484165...09969e )
by Vincent
9s
created

web/app/themes/stash/src/js/main.js   A

Complexity

Total Complexity 3
Complexity/F 1.5

Size

Lines of Code 19
Function Count 2

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 19
rs 10
wmc 3
mnd 1
bc 3
fnc 2
bpm 1.5
cpm 1.5
noi 1

2 Functions

Rating   Name   Duplication   Size   Complexity  
A main.js ➔ ??? 0 3 1
A module.hot.accept 0 5 2
1
import 'babel-polyfill';
2
import buggyfill from 'viewport-units-buggyfill';
3
import app from './app.js';
4
5
const $ = global.jQuery = require('jquery');
6
buggyfill.init();
7
8
$(document).ready(() => {
9
    app.start();
10
});
11
12
/**
13
 * important to leave this here!!
14
 * */
15
module.hot.accept(function (err) {
16
    if (err) {
17
        console.log(err);
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...
18
    }
19
});