You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
590 B
32 lines
590 B
{
|
|
"extends": [
|
|
"plugin:@nrwl/nx/react-typescript",
|
|
"next",
|
|
"next/core-web-vitals",
|
|
"../../.eslintrc.json"
|
|
],
|
|
"ignorePatterns": ["!**/*", ".next/**/*"],
|
|
"overrides": [
|
|
{
|
|
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
|
|
"rules": {
|
|
"@next/next/no-html-link-for-pages": ["error", "apps/vendors/pages"]
|
|
}
|
|
},
|
|
{
|
|
"files": ["*.ts", "*.tsx"],
|
|
"rules": {}
|
|
},
|
|
{
|
|
"files": ["*.js", "*.jsx"],
|
|
"rules": {}
|
|
}
|
|
],
|
|
"rules": {
|
|
"@next/next/no-html-link-for-pages": "off"
|
|
},
|
|
"env": {
|
|
"jest": true
|
|
}
|
|
}
|