@saswatb/eslint-plugin-sort-sx-prop
v0.2.0
Published
Sorts the sx prop from ui libraries like MUI
Maintainers
Readme
eslint-plugin-sort-sx-prop
Sorts the sx prop from ui libraries like MUI
Installation
You'll first need to install ESLint:
npm i eslint --save-devNext, install eslint-plugin-sort-sx-prop:
npm install @saswatb/eslint-plugin-sort-sx-prop --save-devUsage
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 }
]
}
}Rules
🔧 Automatically fixable by the --fix CLI option.
| Name | Description | 🔧 | | :----------------------------------------- | :--------------- | :-- | | sort-sx-prop | Sort the sx prop | 🔧 |
