@intlify/vue-i18n/no-unused-keys
disallow unused localization keys
- ✒️️ The
--fix
option on the command line can automatically fix some of the problems reported by this rule.
Localization keys that not used anywhere in the code are most likely an error due to incomplete refactoring. Such localization keys take up code size and can lead to confusion by readers.
📖 Rule Details
This rule is aimed at eliminating unused localization keys.
👎 Examples of incorrect code for this rule:
locale messages:
json
/* eslint @intlify/vue-i18n/no-unused-keys: 'error' */
// ✗ BAD
{
"hello": "Hello! DIO!",
"hi": "Hi! DIO!" // not used in application
}
In localization codes of application:
vue
<template>
<div class="app">
<p>{{ $t('hello') }}</p>
</div>
</template>
js
import VueI18n from 'vue-i18n'
import en from './locales/en.json'
const i18n = new VueI18n({
locale: 'en',
messages: {
en
}
})
i18n.t('hello')
For SFC.
vue
<script>
/* eslint @intlify/vue-i18n/no-unused-keys: 'error' */
</script>
<i18n>
{
"en": {
"hello": "Hello! DIO!",
"hi": "Hi! DIO!" // not used in SFC
}
}
</i18n>
<template>
<div class="app">
<p>{{ $t('hello') }}</p>
</div>
</template>
👍 Examples of correct code for this rule:
locale messages:
json
/* eslint @intlify/vue-i18n/no-unused-keys: 'error' */
// ✓ GOOD
{
"hello": "Hello! DIO!",
"hi": "Hi! DIO!"
}
In localization codes of application:
vue
<template>
<div class="app">
<p>{{ $t('hello') }}</p>
</div>
</template>
js
import VueI18n from 'vue-i18n'
import en from './locales/en.json'
const i18n = new VueI18n({
locale: 'en',
messages: {
en
}
})
i18n.t('hi')
⚙️ Options
json
{
"@intlify/vue-i18n/no-unused-keys": [
"error",
{
"src": "./src",
"extensions": [".js", ".vue"],
"ignores": [],
"enableFix": false
}
]
}
src
: specify the source codes directory to be able to lint. If you don't set any options, it set toprocess.cwd()
as default.extensions
: an array to allow specified lintable target file extension. If you don't set any options, it set to.js
and.vue
as default.ignores
: An array of key names and patterns to exclude from the check. If you want to specify a pattern, specify a string such as/pattern/
.enableFix
: iftrue
, enable automatically remove unused keys oneslint --fix
. If you don't set any options, it set tofalse
as default. (This is an experimental feature.)
👫 Related Rules
🚀 Version
This rule was introduced in @intlify/eslint-plugin-vue-i18n
v0.1.0