xxxxxxxxxx
module.exports = {
// Remove the extends property to remove default ESLint configurations
// extends: '...',
// Remove or disable specific rules that you want to ignore
rules: {
// ...
},
};
xxxxxxxxxx
// eslint-disable-next-line (paste the eslint error here)
// Example:
// eslint-disable-next-line react-hooks/exhaustive-deps
xxxxxxxxxx
{
"extends": "next",
"rules": {
"react/no-unescaped-entities": "off",
"@next/next/no-page-custom-font": "off"
}
}