eslint-plugin-consistent-words
v0.4.1
Published
Enforce consistency capitalization and spelling of significant words.
Maintainers
Readme
eslint-plugin-consistent-words
Enforce consistency capitalization and spelling of significant words.
Installation
You'll first need to install ESLint:
npm i eslint --save-devNext, install eslint-plugin-consistent-words:
npm install eslint-plugin-consistent-words --save-devUsage
Add consistent-words to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:
{
"plugins": [
"consistent-words"
]
}Then configure the rules you want to use under the rules section.
{
"rules": {
"consistent-words/consistent-capitalization": ["error", { "listOfStringsToEnforce": ["SalesForce"] } ]
}
}Rules
| Name | Description | | :------------------------------------------------------------------- | :---------------------------------------------------------------- | | consistent-capitalization | This rule requires words/phrases to have the same capitalization. |
