Skip to content

Commit

Permalink
fix: do not enable yaml parser
Browse files Browse the repository at this point in the history
  • Loading branch information
arianrhodsandlot committed May 31, 2024
1 parent 354f3c9 commit 9d3e2d9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/flat-configs/recommended/vue-i18n.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ import { eslintPluginVueI18n } from '../../lib/eslint-plugins.js'
import type { FlatConfigs } from '../../types/eslint.js'

export const vueI18nConfigs: FlatConfigs = eslintPluginVueI18n.configs['flat/recommended'].filter(
({ name }: { name: string }) => name !== '@intlify/vue-i18n:base:setup:json',
({ name }: { name: string }) =>
!['@intlify/vue-i18n:base:setup:json', '@intlify/vue-i18n:base:setup:yaml'].includes(name),
)

0 comments on commit 9d3e2d9

Please sign in to comment.