We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
meta-property-ordering
Before:
module.exports = { meta: { messages, schema: [], // no options }, }
After autofix (comment in wrong position):
module.exports = { meta: { schema: [], messages, // no options } },