-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc.json
125 lines (125 loc) · 4.96 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"ignorePatterns": ["node_modules", "**/*", "libs/storybook-app"],
"overrides": [
{
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
"rules": {
"@nx/enforce-module-boundaries": [
"error",
{
"allow": [],
"depConstraints": [
{
"onlyDependOnLibsWithTags": ["*"],
"sourceTag": "*"
}
],
"enforceBuildableLibDependency": true
}
]
}
},
{
"extends": [
"plugin:import/recommended",
"plugin:@nx/typescript",
"plugin:@typescript-eslint/eslint-plugin/recommended",
"eslint:recommended",
"plugin:react/recommended",
"plugin:jsx-a11y/recommended",
"prettier"
],
"files": ["*.ts", "*.tsx"],
"rules": {
"@typescript-eslint/no-explicit-any": "warn",
"@typescript-eslint/no-shadow": "error",
"@typescript-eslint/no-unused-vars": "error",
"arrow-body-style": ["warn", "as-needed"],
"camelcase": "error",
"complexity": ["warn", 10],
"consistent-return": "warn",
"curly": "off",
"default-case": "warn",
"default-case-last": "error",
"default-param-last": "error",
"eol-last": ["warn", "always"],
"eqeqeq": ["error", "smart"],
"func-style": ["error", "expression", { "allowArrowFunctions": true }],
"import/named": "warn",
"import/no-unresolved": "off",
"max-depth": ["warn", 4],
"max-lines": ["warn", 300],
"no-alert": "warn",
"no-await-in-loop": "error",
"no-console": "off",
"no-duplicate-imports": "error",
"no-empty-function": "warn",
"no-eq-null": "error",
"no-implicit-coercion": "warn",
"no-magic-numbers": ["warn", { "ignoreArrayIndexes": true }],
"no-param-reassign": "error",
"no-promise-executor-return": "error",
"no-restricted-syntax": [
"error",
{
"message": "Unexpected property on console object was called",
"selector": "CallExpression[callee.object.name='console'][callee.property.name!=/^(error)$/]"
}
],
"no-shadow": "off",
"no-unmodified-loop-condition": "error",
"no-unreachable-loop": "error",
"no-unused-vars": "off",
"no-use-before-define": "error",
"prefer-const": "error",
"react/prop-types": "off",
"react/react-in-jsx-scope": "off",
"require-atomic-updates": "error"
}
},
{
"extends": [
"plugin:import/recommended",
"plugin:@nx/javascript",
"eslint:recommended",
"plugin:react/recommended",
"plugin:jsx-a11y/recommended",
"prettier"
],
"files": ["*.js", "*.jsx"],
"rules": {
"arrow-body-style": ["warn", "as-needed"],
"camelcase": "error",
"complexity": ["warn", 10],
"consistent-return": "warn",
"curly": "warn",
"default-case": "error",
"default-case-last": "error",
"default-param-last": "error",
"eqeqeq": ["error", "smart"],
"func-style": ["error", "expression", { "allowArrowFunctions": true }],
"max-depth": ["warn", 4],
"max-lines": ["warn", 300],
"no-alert": "warn",
"no-await-in-loop": "error",
"no-console": "warn",
"no-duplicate-imports": "error",
"no-empty-function": "warn",
"no-eq-null": "error",
"no-implicit-coercion": "warn",
"no-magic-numbers": ["warn", { "ignoreArrayIndexes": true }],
"no-param-reassign": "error",
"no-promise-executor-return": "error",
"no-shadow": "error",
"no-unmodified-loop-condition": "error",
"no-unreachable-loop": "error",
"no-use-before-define": "error",
"prefer-const": "error",
"react/react-in-jsx-scope": "off",
"require-atomic-updates": "error"
}
}
],
"plugins": ["@nx"],
"root": true
}