2020-10-16 19:37:34 +02:00
|
|
|
{
|
|
|
|
"root": true,
|
|
|
|
"parser": "@typescript-eslint/parser",
|
|
|
|
"parserOptions": {
|
|
|
|
"ecmaVersion": 2018,
|
|
|
|
"sourceType": "module",
|
|
|
|
"project": "./tsconfig.*?.json"
|
|
|
|
},
|
|
|
|
"ignorePatterns": ["**/*"],
|
|
|
|
"plugins": ["@typescript-eslint", "@nrwl/nx"],
|
|
|
|
"extends": [
|
|
|
|
"eslint:recommended",
|
|
|
|
"plugin:@typescript-eslint/eslint-recommended",
|
|
|
|
"plugin:@typescript-eslint/recommended",
|
2021-03-11 12:40:14 +02:00
|
|
|
"prettier"
|
2020-10-16 19:37:34 +02:00
|
|
|
],
|
|
|
|
"rules": {
|
|
|
|
"@typescript-eslint/explicit-member-accessibility": "off",
|
|
|
|
"@typescript-eslint/explicit-module-boundary-types": "off",
|
|
|
|
"@typescript-eslint/explicit-function-return-type": "off",
|
|
|
|
"@typescript-eslint/no-parameter-properties": "off",
|
|
|
|
"@nrwl/nx/enforce-module-boundaries": [
|
|
|
|
"error",
|
|
|
|
{
|
|
|
|
"enforceBuildableLibDependency": true,
|
|
|
|
"allow": [],
|
|
|
|
"depConstraints": [
|
2021-03-11 12:40:14 +02:00
|
|
|
{
|
|
|
|
"sourceTag": "*",
|
|
|
|
"onlyDependOnLibsWithTags": ["*"]
|
|
|
|
}
|
2020-10-16 19:37:34 +02:00
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"overrides": [
|
|
|
|
{
|
|
|
|
"files": ["*.tsx"],
|
|
|
|
"rules": {
|
|
|
|
"@typescript-eslint/no-unused-vars": "off"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|