eslint-plugin-intl
v1.0.2
Published
React Intl specific rules for ESLint
Maintainers
Readme
eslint-plugin-intl
React Intl specific rules for ESLint
Installation
You'll first need to install ESLint:
$ npm i eslint --save-devNext, install eslint-plugin-intl:
$ npm install eslint-plugin-intl --save-devNote: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-intl globally.
Usage
Add intl to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:
{
"plugins": [
"intl"
]
}Then configure the rules you want to use under the rules section.
{
"rules": {
"intl/rule-name": 2
}
}Supported Rules
- capitalized-description Requires descriptions to begin with capitalized word
- period-description Enforce or disallow ending the description with a period
