Require variables within the same declaration block to be sorted
Some problems reported by this rule are automatically fixable by the --fix
command line option
When declaring multiple variables within the same block, some developers prefer to sort variable names alphabetically to be able to find necessary variable easier at the later time. Others feel that it adds complexity and becomes burden to maintain.
This rule checks all variable declaration blocks and verifies that all variables are sorted alphabetically. The default configuration of the rule is case-sensitive.
Examples of incorrect code for this rule:
Examples of correct code for this rule:
Alphabetical list is maintained starting from the first variable and excluding any that are considered problems. So the following code will produce two problems:
But this one, will only produce one:
This rule has an object option:
"ignoreCase": true
(default false
) ignores the case-sensitivity of the variables orderExamples of correct code for this rule with the { "ignoreCase": true }
option:
This rule is a formatting preference and not following it won’t negatively affect the quality of your code. If you alphabetizing variables isn’t a part of your coding standards, then you can leave this rule off.
This rule was introduced in ESLint v0.2.0.
© OpenJS Foundation and other contributors
Licensed under the MIT License.
https://eslint.org/docs/latest/rules/sort-vars