eslint-plugin-translation
v0.0.14
Published
find all strings that have no translations
Downloads
7
Maintainers
Readme
eslint-plugin-translation
find all the strings that have no translations
Installation
You'll first need to install ESLint:
$ npm i eslint --save-dev
Next, install eslint-plugin-translation
:
$ npm install eslint-plugin-translation --save-dev
Usage
Add translation
to the plugins section of your .eslintrc
configuration file. You can omit the eslint-plugin-
prefix:
{
"plugins": ["translation"]
}
Then configure the rules you want to use under the rules section.
{
"rules": {
"translation/rule-name": 2
}
}
Supported Rules
- Fill in provided rules here