This repository has been archived by the owner on Jan 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
107 lines (107 loc) · 3.63 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"root": true,
"ignorePatterns": ["**/*"],
"plugins": ["@nx"],
"overrides": [
{
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
"extends": ["airbnb-base", "prettier"],
"plugins": ["prettier"],
"rules": {
"@nx/enforce-module-boundaries": [
"error",
{
"enforceBuildableLibDependency": true,
"allow": [],
"depConstraints": [
{
"sourceTag": "*",
"onlyDependOnLibsWithTags": ["*"]
}
]
}
],
"prettier/prettier": [
"error",
{
"overrides": [
{
"files": ["*.ts"],
"options": {
"parser": "babel-ts"
}
}
],
"printWidth": 80,
"tabWidth": 4,
"useTabs": false,
"singleQuote": true,
"trailingComma": "none",
"importOrderParserPlugins": [
"typescript",
"decorators-legacy"
]
}
],
"no-console": "off",
"max-classes-per-file": "off",
"no-underscore-dangle": [
"error",
{
"allowAfterThis": true
}
],
"class-methods-use-this": "off",
"no-plusplus": "off",
"no-param-reassign": "off",
"func-names": "off",
"no-await-in-loop": "off",
"no-nested-ternary": "off",
"import/no-cycle": "off",
"import/order": "off",
"import/prefer-default-export": "off",
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": [
"**/*.{test,spec}.{js,jsx,ts,tsx}",
"**/test-setup.ts",
"**/*-e2e/**/*"
]
}
]
}
},
{
"files": ["*.ts", "*.tsx"],
"extends": [
"plugin:@nx/typescript",
"airbnb-typescript/base",
"prettier"
],
"rules": {
"@typescript-eslint/comma-dangle": "off",
"@typescript-eslint/indent": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/member-ordering": "off",
"@typescript-eslint/no-non-null-assertion": "off"
}
},
{
"files": ["*.js", "*.jsx"],
"extends": ["plugin:@nx/javascript"],
"rules": {}
},
{
"files": ["*.html"],
"extends": [
"plugin:@angular-eslint/template/recommended",
"plugin:prettier/recommended"
],
"excludedFiles": ["*inline-template-*.component.html"],
"rules": {
"prettier/prettier": ["error", { "parser": "angular" }]
}
}
]
}