I have a .vue file like:
<template>
<h1>Hello {{ name }}</h1>
</template>
<script>
export default {
props: {
userName: String
}
}
</script>
<style>
...
</style>
name attribute is undefined; userName is the expected attribute. What ESLint rule can I use to throw an Error in this case?