Skip to content

Latest commit

 

History

History
66 lines (50 loc) · 1.43 KB

meta-property-ordering.md

File metadata and controls

66 lines (50 loc) · 1.43 KB

enforce ordering of meta properties in rule source (meta-property-ordering)

(fixable) The --fix option on the command line automatically fixes problems reported by this rule.

This rule enforces that meta properties of a rule are placed in a consistent order.

Rule Details

Options

This rule has an array option:

  • ['type', 'docs', 'fixable', 'schema', 'messages', 'deprecated', 'replacedBy'] (default): The order that the properties of meta should be placed in.

Examples of incorrect code for this rule:

/* eslint eslint-plugin/meta-property-ordering: ["error",
  ["type", "docs", "fixable", "schema", "messages"]
] */

// invalid; wrong order.
module.exports = {
  meta: {
    docs: "",
    type: "problem",
    fixable: "code",
  },
  create() {},
}

// invalid; extra properties must be placed afterwards.
module.exports = {
  meta: {
    type: "problem",
    fooooooooo: "foo",
    docs: "",
    fixable: "code",
  },
  create() {},
}

Examples of correct code for this rule:

/* eslint eslint-plugin/meta-property-ordering: ["error",
  ["type", "docs", "fixable", "schema", "messages"]
] */

// valid;
module.exports = {
  meta: {
    type: "bar",
    docs: "foo",
    messages: ["zoo"],
    fooooooooo: "foo",
  },
  create() {},
}

When Not To Use It

If don't want to enforce ordering of meta properties, you can turn off this rule.