Please describe what the rule should do:
Warns you that a component is being used in the template and the component is not registered.
What category should the rule belong to?
Provide 2-3 code examples that this rule should warn about:
<template>
<some-component />
</template>
<script>
export default {
name: 'Foo',
}
</script>
Being SomeComponent a component that was not registered.
Additional context