We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 423b79f commit 2a4e598Copy full SHA for 2a4e598
repro/eslint.config.js
@@ -5,7 +5,7 @@ import pluginVue from 'eslint-plugin-vue'
5
export default [
6
js.configs.recommended,
7
...pluginVue.configs['flat/recommended'],
8
- ...vueI18n.configs.recommended,
+ ...vueI18n.configs['flat/recommended'],
9
{
10
rules: {
11
// override rules
repro/src/components/MyComponent.vue
@@ -1,3 +1,4 @@
1
<template>
2
<p>{{ $t('hello') }}</p>
3
+ <p>{{ $t('hi') }}</p>
4
</template>
repro/src/resources/en.json
@@ -1,4 +1,4 @@
"hello": "Hello! <span>DIO!</span>",
- "hi": "Hi! DIO!"
+ "unused": "Hi! DIO!"
}
0 commit comments