为什么 eslint 给我这个错误 Parsing error: Unexpected token < in html file? 我该如何解决这个错误?我的 .eslint.json 配置:
{
"env": {
"browser": true,
"commonjs": true,
"es2021": true
},
"extends": [
"airbnb-base"
],
"parserOptions": {
"ecmaVersion": 12
},
"rules": {
"strict": "off"
}
}Run Code Online (Sandbox Code Playgroud)