Skip to content

Commit

Permalink
update repro
Browse files Browse the repository at this point in the history
  • Loading branch information
ota-meshi committed Jan 27, 2025
1 parent 423b79f commit 2a4e598
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion repro/eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import pluginVue from 'eslint-plugin-vue'
export default [
js.configs.recommended,
...pluginVue.configs['flat/recommended'],
...vueI18n.configs.recommended,
...vueI18n.configs['flat/recommended'],
{
rules: {
// override rules
Expand Down
1 change: 1 addition & 0 deletions repro/src/components/MyComponent.vue
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<template>
<p>{{ $t('hello') }}</p>
<p>{{ $t('hi') }}</p>
</template>
2 changes: 1 addition & 1 deletion repro/src/resources/en.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"hello": "Hello! <span>DIO!</span>",
"hi": "Hi! DIO!"
"unused": "Hi! DIO!"
}

0 comments on commit 2a4e598

Please sign in to comment.