在将Eslint添加到我的项目中后,我在模板部分的.vue文件中得到此错误
Parsing error: '>' expected.eslint
在此代码块中
<template>
<div class="flex justify-center h-40">
<div class="bg-blue-500 w-40 h-full"></div>
</div>
</template>
基本上,向任何HTML标记添加属性都会抛出此错误
我使用的是Vue 3和“vue-ts”Vite模板。
VSCode是我的编辑器,我显然是ESlint插件:)
下面是我的.eslintrc配置
module.exports = {
'env': {
'node': true,
},
'extends': [
'eslint:recommended',
'plugin:vue/base',
'plugin:vue/vue3-recommended',
'plugin:@typescript-eslint/recommended'
],
'parserOptions': {
'ecmaVersion': 12,
'parser': '@typescript-eslint/parser',
'sourceType': 'module'
},
'plugins': [
'vue',
'@typescript-eslint'
],
'rules': {
'indent': [
'error',
'tab'
],
'linebreak-style': [
'error',
'unix'
],
'quotes': [
'error',
'single'
],
'semi': [
'error',
'never'
]
}
}
谢谢你,谢谢
2条答案
按热度按时间h6my8fg21#
您尚未在eslint配置中设置
parser
选项。来自文档:默认情况下,ESLint使用Espree作为其解析器。[...]要指定要用作解析器的npm模块,请在
.eslintrc
文件中使用parser
选项指定它。使用vue-eslint-parser对
.vue
文件的<template>
进行lint:正如@ipid和@jfbloom22所指出的,您可能还需要设置
parserOptions.parser
。这是记录在这里。23c0lvtd2#
你可以这样处理
或
最终结果