ESLint plugin for CSS properties reordering
npm install eslint-plugin-css-reorder 
ESLint plugin for CSS properties reordering
You'll first need to install ESLint:
``sh`
npm i eslint --save-dev
Next, install eslint-plugin-css-reorder:
`sh`
npm install eslint-plugin-css-reorder --save-dev
Add css-reorder to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:
`json`
{
"plugins": ["css-reorder"]
}
Then configure the rules you want to use under the rules section.
`json``
{
"rules": {
"css-reorder/rule-name": 2
}
}
- property-reorder