Automatically reword variables to adhere to project based naming conventions.
You'll first need to install ESLint:
$ npm i eslint --save-dev
Next, install eslint-plugin-reword
:
$ npm install eslint-plugin-reword --save-dev
Add reword
to the plugins section of your .eslintrc
configuration file. You can omit the eslint-plugin-
prefix:
{
"plugins": [
"reword"
]
}
Then configure the rules you want to use under the rules section.
{
"rules": {
"reword/rule-name": 2
}
}
- TBA