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
No known key found for this signature in database
GPG Key ID: E3C57DF9B80855AD
1 changed files with 2 additions and 1 deletions

View File

@ -3,6 +3,7 @@
"ignorePatterns": [".next", "__ENV.js"],
"rules": {
"@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"]
}
}