**Enforces that a return statement is present in computed property (computed-property-return)** This example would throw an error: ```js export default { computed: { a () { } } } ``` What do you think @mysticatea @michalsnik?