Sorts the sx prop from ui libraries like MUI
You'll first need to install ESLint:
npm i eslint --save-dev
Next, install eslint-plugin-sort-sx-prop
:
npm install @saswatb/eslint-plugin-sort-sx-prop --save-dev
Add sort-sx-prop
to the plugins section of your .eslintrc
configuration file. You can omit the eslint-plugin-
prefix:
{
"plugins": ["@saswatb/eslint-plugin-sort-sx-prop"]
}
Then configure the rules you want to use under the rules section.
{
"rules": {
"@saswatb/eslint-plugin-sort-sx-prop/sort-sx-prop": [
"error",
{ "addWhitespace": true }
]
}
}
🔧 Automatically fixable by the --fix
CLI option.
Name | Description | 🔧 |
---|---|---|
sort-sx-prop | Sort the sx prop | 🔧 |