File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed
cli-ui-addon-webpack/src/components
cli-ui-addon-widgets/src/components Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 26
26
class =" children"
27
27
:transform =" `translate(${size / 2}, ${size / 2})`"
28
28
>
29
+ <!-- eslint-disable vue/no-use-v-if-with-v-for -->
29
30
<DonutModule
30
31
v-for =" m of module.children"
31
32
v-if =" isVisible(getRatio(m, ratio))"
Original file line number Diff line number Diff line change @@ -100,6 +100,7 @@ export default {
100
100
},
101
101
102
102
computed: {
103
+ // eslint-disable-next-line vue/return-in-computed-property
103
104
errorData () {
104
105
if (this .error ) {
105
106
return ERRORS [this .error ]
Original file line number Diff line number Diff line change @@ -15,6 +15,9 @@ module.exports = {
15
15
] ,
16
16
17
17
rules : {
18
- 'vue/html-self-closing' : 'error'
18
+ 'vue/html-self-closing' : 'error' ,
19
+ 'vue/no-use-v-if-with-v-for' : 'warn' ,
20
+ 'vue/no-unused-vars' : 'warn' ,
21
+ 'vue/return-in-computed-property' : 'warn' ,
19
22
}
20
23
}
You can’t perform that action at this time.
0 commit comments