Skip to content

Commit 9d87b35

Browse files
author
Guillaume Chau
committed
fix(ui): eslint warnings
1 parent 3208844 commit 9d87b35

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

packages/@vue/cli-ui-addon-webpack/src/components/DonutModule.vue

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
m 0, -${size / 2}
1616
a ${size / 2},${size / 2} 0 1 1 0,${size}
1717
a ${size / 2},${size / 2} 0 1 1 0,-${size}`"
18-
:stroke-dasharray="`${finalDasharray - .25} ${finalDasharray - .25}`"
18+
:stroke-dasharray="`${finalDasharray - 0.25} ${finalDasharray - 0.25}`"
1919
:stroke-dashoffset="finalDashoffset"
2020
:stroke="stroke"
2121
/>
@@ -133,9 +133,9 @@ export default {
133133
},
134134
135135
isVisible (ratio) {
136-
return ratio > .0025
136+
return ratio > 0.0025
137137
}
138-
},
138+
}
139139
}
140140
</script>
141141

packages/@vue/cli-ui-addon-webpack/src/components/TestView.vue

-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ export default {
2929
}
3030
</script>
3131

32-
3332
<style lang="stylus" scoped>
3433
.test-view
3534
padding 42px

0 commit comments

Comments
 (0)