This repository has been archived by the owner on Oct 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
80 lines (80 loc) · 2.24 KB
/
.eslintrc.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"root": true,
"ignorePatterns": ["**/*"],
"plugins": ["@nrwl/nx", "etc", "rxjs", "rxjs-angular", "sonarjs"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": ["{e2e,packages}/**/tsconfig.*?.json", "e2e/**/*-e2e/tsconfig.json"]
},
"overrides": [
{
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
"excludedFiles": ["*.spec.ts"],
"rules": {
"@nrwl/nx/enforce-module-boundaries": [
"error",
{
"enforceBuildableLibDependency": true,
"allow": [],
"depConstraints": [
{
"sourceTag": "scope:public",
"onlyDependOnLibsWithTags": ["scope:public"]
},
{
"sourceTag": "scope:internal",
"onlyDependOnLibsWithTags": ["scope:public", "scope:internal"]
},
{
"sourceTag": "type:app",
"onlyDependOnLibsWithTags": ["type:lib"]
},
{
"sourceTag": "type:lib",
"onlyDependOnLibsWithTags": ["type:lib", "type:test-util"]
},
{
"sourceTag": "type:e2e",
"onlyDependOnLibsWithTags": ["type:app"]
}
]
}
]
}
},
{
"files": ["*.ts", "*.tsx"],
"extends": ["plugin:@nrwl/nx/typescript"],
"rules": {}
},
{
"files": ["*.spec.ts", "*.spec.tsx", "*.spec.js", "*.spec.jsx"],
"rules": {
"@nrwl/nx/enforce-module-boundaries": "off"
}
},
{
"files": ["*.js", "*.jsx"],
"extends": ["plugin:@nrwl/nx/javascript"],
"rules": {}
},
{
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
"extends": ["plugin:etc/recommended", "plugin:rxjs/recommended", "plugin:sonarjs/recommended"],
"rules": {
"etc/no-commented-out-code": "error",
"etc/no-const-enum": "error",
"sonarjs/cognitive-complexity": ["error", 8]
}
},
{
"files": ["*.ts"],
"rules": {
"rxjs-angular/prefer-composition": [
"error",
{ "checkDecorators": ["Component", "Directive", "Injectable", "NgModule", "Pipe"] }
]
}
}
]
}