eslint-plugin-i18n-validator
v0.1.4
Published
Validate i18n keys existence
Downloads
55
Readme
eslint-plugin-i18n-validator
Validate i18n keys existence
Installation
You'll first need to install ESLint:
$ npm i eslint --save-dev
Next, install eslint-plugin-i18n-validator
:
$ npm install eslint-plugin-i18n-validator --save-dev
Note: If you installed ESLint globally (using the -g
flag) then you must also install eslint-plugin-i18n-validator
globally.
Usage
Add i18n-validator
to the plugins section of your .eslintrc
configuration file. You can omit the eslint-plugin-
prefix:
{
"plugins": [
"i18n-validator"
]
}
Then configure the rules you want to use under the rules section.
{
"rules": {
"i18n-validator/json-key-exists": [2, {
"locales": ["en", "it"],
"jsonBaseURIs": [
{ "baseURI": "./my/locales/" }
]
}]
}
}
Supported Rules
i18n-validator/json-key-exists
Checks that each translation key in code has a correspondig translation in jsons locales files.
Options
locales
: [String] (Required):- Array of locales that will be used by the resolver.
jsonBaseURIs
: [Object | String] (Required)- Can contain objects:
"jsonBaseURIs": [ { "baseURI": "./my/locales/", "resolver": "./scripts/myCustomPathResolver", "foo": "bar" }, { "baseURI": "https://my.base.url/locales/", "resolver": "./scripts/myCustomURLResolver" } ]
- Can contain strings pointing to a path or a URL:
Strings will use the default base resolver"jsonBaseURIs": [ "./my/locales/", "https://my.base.url/locales/" ]
- Can contain objects:
Resolver
Resolver gets locales
and the entire jsonURIObj
and must return an array of jsons to be checked and eventual errors.
function(locales, jsonURIObj) {
return {
jsons: [
{
path: "path/of/my.json",
content: jsonObj
}
],
errors: [
"error1",
"error2"
]
};
}
Examples
Simple
This will search among all jsons for foo
key
JS
I18n.t(`foo`);
JSON
{
"foo": "Foo value"
}
Nested
This will search among all jsons for plain or nested foo1.foo2
key
JS
I18n.t(`foo1.foo2`);
JSON
{
"foo1.foo2": "Foo value",
}
OR
{
"foo1": {
"foo2": "Foo value"
}
}
Template Literals in translation key
This will search among all jsons for plain or nested foo.bar1
and foo.bar2
keys
JS
I18n.t(`foo.${bar}`); /* eslint-plugin-i18n-validator/json-key-exists { "bar": ["bar1","bar2"]} */
JSON
{
"foo.bar1": "Bar1 value",
"foo.bar2": "Bar2 value"
}
OR
{
"foo": {
"bar1": "Bar1 value",
"bar2": "Bar2 value"
}
}
Conditional Expression in translation key
This will search among all jsons for foo
and bar
keys
JS
I18n.t(foo ? `foo` : `bar`);
JSON
{
"foo": "Foo value",
"bar": "Bar value
}