-
-
Notifications
You must be signed in to change notification settings - Fork 697
Closed
Description
This is a Feature Request to update the default value of https://eslint.vuejs.org/rules/no-unused-components.html#vue-no-unused-components . In practice, this is extremely annoying to use when debugging:
<template>
<div>
<!-- <my-component></my-component> -->
<div>...</div>
</div>
</template>
<script>
export default {
components: {
MyComponent: () => import('./MyComponent'),
},
}
</script>In this example, I'm wanting to test something by commenting out the component. This rules greets me with a black screen preventing me from seeing the app until I additionally comment out the component import.
I'm proposing a new default value of warn. It still promotes the developer to make good decisions, but doesn't get in the way of working.
Metadata
Metadata
Assignees
Labels
No labels
