Is there a way to disable the rule in the eslintrc.json file for the entire Next.js project?
https://i.sstatic.net/5e8tm.png
I've tried adding this configuration, but it doesn't seem to work:
{
"extends": ["next/core-web-vitals", "prettier"],
"rules": {
"prefer-const": "error",
"indent": ["error", 2],
"jsx-a11y/img-has-alt": "off"
}
}