Skip to content

@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.

๐Ÿš€ Version โ€‹

This rule was introduced in @intlify/eslint-plugin-vue-i18n v0.10.0

๐Ÿ” Implementation โ€‹