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.
nx-guitar-school/apps/client/.eslintrc.json

50 lines
767 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/client/pages"
]
}
},
{
"files": [
"*.ts",
"*.tsx"
],
"rules": {}
},
{
"files": [
"*.js",
"*.jsx"
],
"rules": {}
}
],
"rules": {
"@next/next/no-html-link-for-pages": "off",
"@typescript-eslint/ban-ts-comment": "off"
},
"env": {
"jest": true
}
}