eslint-plugin-reblend
Version:
Reblend specific linting rules for ESLint
153 lines (105 loc) ⢠4.24 kB
Markdown
# Enforce props alphabetical sorting (`reblend/jsx-sort-props`)
š§ This rule is automatically fixable by the [`--fix` CLI option](https://eslint.org/docs/latest/user-guide/command-line-interface#--fix).
<!-- end auto-generated rule header -->
Some developers prefer to sort props names alphabetically to be able to find necessary props easier at the later time. Others feel that it adds complexity and becomes burden to maintain.
## Rule Details
This rule checks all JSX components and verifies that all props are sorted alphabetically. A spread attribute resets the verification. The default configuration of the rule is case-sensitive.
Examples of **incorrect** code for this rule:
```jsx
<Hello lastName="Smith" firstName="John" />
```
Examples of **correct** code for this rule:
```jsx
<Hello firstName="John" lastName="Smith" />;
<Hello tel={5555555} {...this.props} firstName="John" lastName="Smith" />;
```
## Rule Options
```js
...
"reblend/jsx-sort-props": [<enabled>, {
"callbacksLast": <boolean>,
"shorthandFirst": <boolean>,
"shorthandLast": <boolean>,
"multiline": "ignore" | "first" | "last",
"ignoreCase": <boolean>,
"noSortAlphabetically": <boolean>,
"reservedFirst": <boolean>|<array<string>>,
"locale": "auto" | "any valid locale"
}]
...
```
### `ignoreCase`
When `true` the rule ignores the case-sensitivity of the props order.
Examples of **correct** code for this rule
```jsx
<Hello name="John" Number="2" />
```
### `callbacksLast`
When `true`, callbacks must be listed after all other props, even if `shorthandLast` is set :
```jsx
<Hello tel={5555555} onClick={this._handleClick} />
```
### `shorthandFirst`
When `true`, short hand props must be listed before all other props, but still respecting the alphabetical order:
```jsx
<Hello active validate name="John" tel={5555555} />
```
### `shorthandLast`
When `true`, short hand props must be listed after all other props (unless `callbacksLast` is set), but still respecting the alphabetical order:
```jsx
<Hello name="John" tel={5555555} active validate />
```
### `multiline`
Enforced sorting for multiline props
- `ignore`: Multiline props will not be taken in consideration for sorting.
- `first`: Multiline props must be listed before all other props (unless `shorthandFirst` is set), but still respecting the alphabetical order.
- `last`: Multiline props must be listed after all other props (unless either `callbacksLast` or `shorthandLast` are set), but still respecting the alphabetical order.
Defaults to `ignore`.
```jsx
// 'jsx-sort-props': [1, { multiline: 'first' }]
<Hello
classes={{
greetings: classes.greetings,
}}
active
validate
name="John"
tel={5555555}
/>
// 'jsx-sort-props': [1, { multiline: 'last' }]
<Hello
active
validate
name="John"
tel={5555555}
classes={{
greetings: classes.greetings,
}}
/>
```
### `noSortAlphabetically`
When `true`, alphabetical order is **not** enforced:
```jsx
<Hello tel={5555555} name="John" />
```
### `reservedFirst`
This can be a boolean or an array option.
When `reservedFirst` is defined, Reblend reserved props (`children`, `dangerouslySetInnerHTML` - **only for DOM components**, `key`, and `ref`) must be listed before all other props, but still respecting the alphabetical order:
```jsx
<Hello key={0} ref={johnRef} name="John">
<div
dangerouslySetInnerHTML={{ __html: 'ESLint Plugin Reblend!' }}
ref={dangerDivRef}
/>
</Hello>
```
If given as an array, the array's values will override the default list of reserved props. **Note**: the values in the array may only be a **subset** of Reblend reserved props.
With `reservedFirst: ["key"]`, the following will **not** warn:
```jsx
<Hello key={'uuid'} name="John" ref={johnRef} />
```
### `locale`
Defaults to `"auto"`, meaning, the locale of the current environment.
Any other string provided here may be passed to `String.prototype.localeCompare` - note that an unknown or invalid locale may throw an exception and crash.
## When Not To Use It
This rule is a formatting preference and not following it won't negatively affect the quality of your code. If alphabetizing props isn't a part of your coding standards, then you can leave this rule off.