style(eslint): client/next: add specific rule for no-html-link-for-pages

This commit is contained in:
Amruth Pillai
2022-04-09 21:25:19 +02:00
parent 29d94dfc14
commit f219562e72

View File

@ -3,6 +3,7 @@
"ignorePatterns": [".next", "__ENV.js"], "ignorePatterns": [".next", "__ENV.js"],
"rules": { "rules": {
"@next/next/no-img-element": "off", "@next/next/no-img-element": "off",
"@next/next/no-sync-scripts": "off" "@next/next/no-sync-scripts": "off",
"@next/next/no-html-link-for-pages": [2, "client/pages"]
} }
} }