Skip to content

Latest commit

 

History

History
52 lines (36 loc) · 1.13 KB

README.md

File metadata and controls

52 lines (36 loc) · 1.13 KB

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-dev

Next, install eslint-plugin-sort-sx-prop:

npm install @saswatb/eslint-plugin-sort-sx-prop --save-dev

Usage

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 🔧