有人知道如何在整个eslintrc.json项目的Next.js文件中禁用此功能吗?

我补充了这一点,但它不起作用:
{
"extends": ["next/core-web-vitals", "prettier"],
"rules": {
"prefer-const": "error",
"indent": ["error", 2],
"jsx-a11y/img-has-alt": "off"
}
}发布于 2022-06-08 11:49:04
试一试:"jsx-a11y/alt-text": [0],查看文档获取更多信息
https://stackoverflow.com/questions/72545141
复制相似问题