🔧 The --fix
option on the command line can automatically fix the problems
reported by this rule.
Sorts properties in object destructuring patterns alphabetically and case insensitive in ascending order.
Examples of incorrect code for this rule:
let { b, c, a } = {}
let { C, b } = {}
let { b: a, a: b } = {}
Examples of correct code for this rule:
let { a, b, c } = {}
let { b, C } = {}
let { a: b, b: a } = {}
This rule has an options object with the following defaults.
{
"sort/destructuring-properties": [
"error",
{ "caseSensitive": false, "natural": true }
]
}
If true
, enforce properties to be in case-sensitive order.
If true
, enforce properties to be in natural order. Natural order compares
strings containing combination of letters and numbers in the way a human being
would sort. For example, a-10
would come after a-3
when using natural
ordering.
This rule is a formatting preference and not following it won't negatively affect the quality of your code. If alphabetizing destructuring properties isn't a part of your coding standards, then you can leave this rule off.