Hi! Maybe there is such an opportunity to enable the [curly](https://eslint.org/docs/latest/rules/curly#rule-details) rule to work in the SFC? Сurrent behavior ``` <script lang="ts" setup> const q = () => { if (true) return; }; </script> ``` Expected behavior with the rule ``` <script lang="ts" setup> const q = () => { if (true) { return; } }; </script> ```