Skip to content

Commit 3433658

Browse files
author
Guillaume Chau
committed
fix(ui): eslint errors
1 parent 4f3337d commit 3433658

File tree

6 files changed

+3
-8
lines changed

6 files changed

+3
-8
lines changed

packages/@vue/cli-ui/src/App.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ export default {
2727
}
2828
</script>
2929

30-
3130
<style lang="stylus">
3231
@import "~@vue/ui/dist/vue-ui.css"
3332
@import "~file-icons-js/css/style.css"

packages/@vue/cli-ui/src/components/ClientAddonComponent.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
</div>
99
</template>
1010

11-
1211
<script>
1312
export default {
1413
props: {

packages/@vue/cli-ui/src/components/PromptsList.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ export default {
4545
const groupMap = {}
4646
const groups = []
4747
this.prompts.forEach(prompt => {
48-
let group = groups[prompt.group]
48+
let group = groupMap[prompt.group]
4949
if (!group) {
50-
group = groups[prompt.group] = {
50+
group = groupMap[prompt.group] = {
5151
id: prompt.group,
5252
prompts: []
5353
}

packages/@vue/cli-ui/src/components/TaskItem.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export default {
6868
id: this.task.id
6969
}
7070
})
71-
},
71+
}
7272
}
7373
}
7474
</script>

packages/@vue/cli-ui/src/components/TerminalView.vue

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,8 +178,6 @@ export default {
178178
},
179179
180180
async fit () {
181-
let parent = this.$el
182-
let el = this.$refs.render
183181
let term = this.$_terminal
184182
term.element.style.display = 'none'
185183

packages/@vue/cli-ui/src/views/ProjectConfigurations.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,4 +71,3 @@ export default {
7171
.content-view /deep/ > .content
7272
overflow-y hidden
7373
</style>
74-

0 commit comments

Comments
 (0)