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 ( 8f319c...88a45f )
by
unknown
05:20
created

src/main.dev.js   A

Complexity

Total Complexity 2
Complexity/F 2

Size

Lines of Code 20
Function Count 1

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

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

1 Function

Rating   Name   Duplication   Size   Complexity  
A main.dev.js ➔ constructor 0 3 1
1
/**
2
 * This file is part of the O2System Venus UI Framework package.
3
 *
4
 * For the full copyright and license information, please view the LICENSE
5
 * file that was distributed with this source code.
6
 *
7
 * @author         Steeve Andrian Salim
8
 * @copyright      Copyright (c) Steeve Andrian Salim
9
 */
10
// ------------------------------------------------------------------------
11
12
import "@babel/register";
13
import "webpack-hot-middleware/client?reload=true";
14
import "./index.html";
15
16
import UserInterface from './UserInterface';
17
18
/**
19
 * Venus Object
20
 */
21
export default class Venus extends Object {
22
23
    /**
24
     * Venus.constructor
25
     */
26
    constructor() {
27
        this.userInterface = new UserInterface;
28
    }
29
}
30
31
module.exports = new Venus;
32