warning
vue/object-curly-spacingEnforce consistent spacing inside braces
Examples
❌ Incorrect
<template>
<my-component :options="{name: 'Sam Turrell'}" />
</template>
✅ Correct
<template>
<my-component :options="{ name: 'Sam Turrell' }" />
</template>