@intlify/vue-i18n/no-missing-keys-in-other-locales โ
disallow missing locale message keys in other locales
This rule warns if a key with the same path as the key of resource does not exist in another locale.
๐ Rule Details โ
๐ Examples of incorrect code for this rule:
locale messages:
json
/* eslint @intlify/vue-i18n/no-missing-keys-in-other-locales: 'error' */
{
"en": {
/* โ GOOD */
"hello": "Hello!",
/* โ BAD */
"goodbye": "Goodbye!"
},
"ja": {
"hello": "ใใใซใกใฏ!"
}
}
๐ Examples of correct code for this rule:
locale messages:
json
/* eslint @intlify/vue-i18n/no-missing-keys-in-other-locales: 'error' */
{
"en": {
/* โ GOOD */
"hello": "Hello!",
"goodbye": "Goodbye!"
},
"ja": {
"hello": "ใใใซใกใฏ!",
"goodbye": "ใใใใชใ!"
}
}
โ๏ธ Options โ
json
{
"@intlify/vue-i18n/no-missing-keys-in-other-locales": [
"error",
{
"ignoreLocales": []
}
]
}
ignoreLocales
: If you specify an array of locales, that locale is allowed even if it is missing.
๐ซ Related Rules โ
๐ Version โ
This rule was introduced in @intlify/eslint-plugin-vue-i18n
v0.10.0