Before: ```js module.exports = { meta: { messages, schema: [], // no options }, } ``` After autofix (comment in wrong position): ```js module.exports = { meta: { schema: [], messages, // no options } }, ```
Before:
After autofix (comment in wrong position):