diff --git a/docs/rules/meta-property-ordering.md b/docs/rules/meta-property-ordering.md index 973138f5..e0215d83 100644 --- a/docs/rules/meta-property-ordering.md +++ b/docs/rules/meta-property-ordering.md @@ -12,7 +12,7 @@ This rule enforces that meta properties of a rule are placed in a consistent ord This rule has an array option: -- `['type', 'docs', 'fixable', 'hasSuggestions', 'schema', 'messages', 'deprecated', 'replacedBy']` (default): The order that the properties of `meta` should be placed in. +- `['type', 'docs', 'fixable', 'hasSuggestions', 'deprecated', 'replacedBy', 'schema', 'messages']` (default): The order that the properties of `meta` should be placed in. Examples of **incorrect** code for this rule: diff --git a/lib/rules/meta-property-ordering.js b/lib/rules/meta-property-ordering.js index d07215d3..46a91a59 100644 --- a/lib/rules/meta-property-ordering.js +++ b/lib/rules/meta-property-ordering.js @@ -45,6 +45,8 @@ module.exports = { 'docs', 'fixable', 'hasSuggestions', + 'deprecated', + 'replacedBy', 'schema', 'messages', ];