2022-02-11 13:56:28 +00:00
|
|
|
{
|
|
|
|
"root": true,
|
|
|
|
"ignorePatterns": ["**/*"],
|
2022-03-08 14:26:42 +00:00
|
|
|
"plugins": ["@nrwl/nx", "eslint-plugin-unicorn"],
|
2022-02-11 13:56:28 +00:00
|
|
|
"overrides": [
|
|
|
|
{
|
|
|
|
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
|
|
|
|
"rules": {
|
|
|
|
"@nrwl/nx/enforce-module-boundaries": [
|
|
|
|
"error",
|
|
|
|
{
|
|
|
|
"enforceBuildableLibDependency": true,
|
|
|
|
"allow": [],
|
|
|
|
"depConstraints": [
|
|
|
|
{
|
|
|
|
"sourceTag": "*",
|
|
|
|
"onlyDependOnLibsWithTags": ["*"]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2022-03-08 14:26:42 +00:00
|
|
|
],
|
|
|
|
"unicorn/filename-case": [
|
|
|
|
"error",
|
|
|
|
{
|
|
|
|
"case": "kebabCase",
|
|
|
|
"ignore": ["\\[[a-zA-Z]+\\]\\.page"]
|
|
|
|
}
|
2022-03-23 15:01:50 +00:00
|
|
|
],
|
|
|
|
"no-restricted-imports": [
|
|
|
|
"warn",
|
|
|
|
{
|
|
|
|
"name": "lodash",
|
|
|
|
"message": "Import the specific methods you need from lodash e.g. `import get from 'lodash/get'`. This helps with bundle sizing."
|
|
|
|
}
|
2022-02-11 13:56:28 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"files": ["*.ts", "*.tsx"],
|
|
|
|
"extends": ["plugin:@nrwl/nx/typescript"],
|
2022-02-14 13:35:50 +00:00
|
|
|
"rules": {
|
|
|
|
"@typescript-eslint/ban-ts-comment": [
|
|
|
|
"error",
|
|
|
|
{
|
|
|
|
"ts-expect-error": "allow-with-description",
|
|
|
|
"ts-ignore": "allow-with-description",
|
|
|
|
"ts-nocheck": true,
|
|
|
|
"ts-check": false,
|
|
|
|
"minimumDescriptionLength": 10
|
|
|
|
}
|
2022-03-30 09:49:48 +00:00
|
|
|
],
|
|
|
|
"@typescript-eslint/consistent-type-imports": [
|
|
|
|
"error",
|
|
|
|
{
|
|
|
|
"prefer": "type-imports",
|
|
|
|
"disallowTypeAnnotations": true
|
|
|
|
}
|
2022-02-14 13:35:50 +00:00
|
|
|
]
|
|
|
|
}
|
2022-02-11 13:56:28 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"files": ["*.js", "*.jsx"],
|
|
|
|
"extends": ["plugin:@nrwl/nx/javascript"],
|
|
|
|
"rules": {}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|