Skip to content

Commit

Permalink
chore(eslint): fix eslint nextjs issue
Browse files Browse the repository at this point in the history
  • Loading branch information
AliKdhim87 committed Dec 4, 2023
1 parent 232673f commit af8c621
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 3 deletions.
10 changes: 9 additions & 1 deletion apps/kennisbank-frontend/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
{
"extends": "next/core-web-vitals"
"extends": "next/core-web-vitals",
"settings": {
"next": {
"rootDir": "../kennisbank-frontend"
}
},
"rules": {
"@next/next/no-html-link-for-pages": "off"
}
}
10 changes: 9 additions & 1 deletion apps/pdc-frontend/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
{
"extends": "next/core-web-vitals"
"extends": "next/core-web-vitals",
"settings": {
"next": {
"rootDir": "../pdc-frontend"
}
},
"rules": {
"@next/next/no-html-link-for-pages": "off"
}
}
10 changes: 9 additions & 1 deletion apps/vth-frontend/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
{
"extends": "next/core-web-vitals"
"extends": "next/core-web-vitals",
"settings": {
"next": {
"rootDir": "../vth-frontend"
}
},
"rules": {
"@next/next/no-html-link-for-pages": "off"
}
}

0 comments on commit af8c621

Please sign in to comment.