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
Pull Request — develop (#79)
by Vincent
02:12
created

module.hot.accept   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 2
c 0
b 0
f 0
nc 2
nop 1
dl 0
loc 5
rs 9.4285
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
});