You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> vue-project@0.0.0 lint
> eslint . --fix
Oops! Something went wrong! :(
ESLint: 9.22.0
Error: Error while loading rule '@typescript-eslint/await-thenable': You have used a rule which requires type information, but don't have parserOptions set to generate type information for this file. See https://typescript-eslint.io/getting-started/typed-linting for enabling linting with type information.
Parser: vue-eslint-parser
Note: detected a parser other than @typescript-eslint/parser. Make sure the parser is configured to forward "parserOptions.project" to @typescript-eslint/parser.
If I set vueTsConfigs.recommendedTypeChecked back to vueTsConfigs.recommended, it works again. Could this be a compatibility problem between recommendedTypeChecked and estlint-plugin-vue-i18n?
The text was updated successfully, but these errors were encountered:
Tell us about your environment
What did you do?
After adding
estlint-plugin-vue-i18n
to my eslint config, linting fails with:I started with the eslint config created by
npm create vue@latest
:Then I set
vueTsConfigs.recommended
tovueTsConfigs.recommendedTypeChecked
:(Everything still works at this point.)
Then I added
eslint-plugin-vue-i18n
:Now eslint fails with this error:
If I set
vueTsConfigs.recommendedTypeChecked
back tovueTsConfigs.recommended
, it works again. Could this be a compatibility problem betweenrecommendedTypeChecked
andestlint-plugin-vue-i18n
?The text was updated successfully, but these errors were encountered: