29 lines
511 B
JSON
29 lines
511 B
JSON
|
{
|
||
|
"extends": [
|
||
|
"plugin:@nrwl/nx/react-typescript",
|
||
|
"../../.eslintrc.json",
|
||
|
"next",
|
||
|
"next/core-web-vitals"
|
||
|
],
|
||
|
"ignorePatterns": ["!**/*"],
|
||
|
"overrides": [
|
||
|
{
|
||
|
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
|
||
|
"rules": {
|
||
|
"@next/next/no-html-link-for-pages": ["error", "apps/trading/pages"]
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"files": ["*.ts", "*.tsx"],
|
||
|
"rules": {}
|
||
|
},
|
||
|
{
|
||
|
"files": ["*.js", "*.jsx"],
|
||
|
"rules": {}
|
||
|
}
|
||
|
],
|
||
|
"env": {
|
||
|
"jest": true
|
||
|
}
|
||
|
}
|