我的反应项目得到了以下 .eslintrc 文件:
{
"extends": ["airbnb-base", "airbnb/hooks", "plugin:react/recommended"],
"parserOptions": {
"ecmaVersion": 2021,
"sourceType": "module"
}
}
我的项目中有一些纯 .html 文件,问题是 eslint 将 .html 文件作为 .jsx 文件处理,这在 html 文件中给出了以下 eslint 错误:
Parsing error: Adjacent JSX elements must be wrapped in an enclosing tageslint
在不将 .html 添加到 .eslintignore 的情况下如何解决这个问题?我不想将 .html 添加到 .eslintignore 因为我想要 eslint 在 .html 文件上的默认 linting。