Pattern: Missing comment for prop
Issue: -
This rule enforces that every prop has a comment that documents it.
<script>
export default defineComponent({
props: {
// ✓ GOOD
/** JSDoc comment */
a: Number,
// ✗ BAD
// line comment
b: Number,
/* block comment */
c: Number,
d: Number,
}
})
</script>