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 ( b06f31...22c0df )
by John
02:10 queued 22s
created

demo/main.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 0
Metric Value
wmc 1
eloc 6
mnd 0
bc 0
fnc 1
dl 0
loc 8
rs 10
bpm 0
cpm 1
noi 0
c 0
b 0
f 0
1
import Vue from "vue";
2
import App from "./App.vue";
3
4
Vue.config.productionTip = false;
5
6
new Vue({
7
  render: h => h(App)
8
}).$mount("#app");
9