**Is your feature request related to a problem? Please describe.** `meta-satisfies-type` is super convenient, but it still allows: ```ts const meta = {} satisfies Meta<typeof MyComponent> export default meta // With this kind of follow ups.. const someStory = { args: {...meta.args.someArg }} ``` **Describe the solution you'd like** Have an option to this rule to only allow: ```ts export default {} satisfies Meta<typeof MyComponent> ``` **Describe alternatives you've considered** Creating my own rule **Additional context** I would happily contribute, but I'm out of idea for the name of the option 🙈 `strictExportDefault` ?
Is your feature request related to a problem? Please describe.
meta-satisfies-typeis super convenient, but it still allows:Describe the solution you'd like
Have an option to this rule to only allow:
Describe alternatives you've considered
Creating my own rule
Additional context
I would happily contribute, but I'm out of idea for the name of the option 🙈
strictExportDefault?