Passed
Push — develop ( 40f0e0...79a1ab )
by Andrew
07:28
created

???.mounted   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
c 0
b 0
f 0
nc 1
dl 0
loc 2
rs 10
nop 0
1
import Vue from 'vue';
2
import Confetti from '../vue/Confetti.vue';
3
4
const vm = new Vue({
0 ignored issues
show
Coding Style introduced by
The opening parenthesis of a multi-line function call should be the last content on the line.
Loading history...
Unused Code introduced by
The constant vm seems to be never used. Consider removing it.
Loading history...
5
    el: "#cp-nav-content",
6
    components: {
7
        'confetti': Confetti,
8
    },
9
    data: {
10
    },
11
    methods: {
12
    },
13
    mounted() {
14
    }
15
});
0 ignored issues
show
Coding Style introduced by
For multi-line function calls, the closing parenthesis should be on a new line.

If a function call spawns multiple lines, the coding standard suggests to move the closing parenthesis to a new line:

someFunctionCall(
    $firstArgument,
    $secondArgument,
    $thirdArgument
); // Closing parenthesis on a new line.
Loading history...
16