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 2626 class =" children"
2727 :transform =" `translate(${size / 2}, ${size / 2})`"
2828 >
29+ <!-- eslint-disable vue/no-use-v-if-with-v-for -->
2930 <DonutModule
3031 v-for =" m of module.children"
3132 v-if =" isVisible(getRatio(m, ratio))"
Original file line number Diff line number Diff line change @@ -100,6 +100,7 @@ export default {
100100 },
101101
102102 computed: {
103+ // eslint-disable-next-line vue/return-in-computed-property
103104 errorData () {
104105 if (this .error ) {
105106 return ERRORS [this .error ]
Original file line number Diff line number Diff line change @@ -15,6 +15,9 @@ module.exports = {
1515 ] ,
1616
1717 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' ,
1922 }
2023}
You can’t perform that action at this time.
0 commit comments