forked from zendeskgarden/react-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
47 lines (47 loc) · 1.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
{
"extends": [
"@zendeskgarden",
"@zendeskgarden/eslint-config/plugins/notice",
"@zendeskgarden/eslint-config/plugins/react",
"prettier"
],
"rules": {
"sort-imports": "off",
"react/no-array-index-key": "off",
"react/no-set-state": "error"
},
"overrides": [
{
"files": ["*.ts", "*.tsx"],
"extends": [
"@zendeskgarden/eslint-config/plugins/typescript",
"prettier"
],
"rules": {
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/naming-convention": "off",
"@typescript-eslint/no-explicit-any": "off",
"logical-assignment-operators": "off",
"prefer-object-has-own": "off",
"react/prop-types": "off"
}
},
{
"files": ["packages/**/*.{js,ts,tsx}"],
"excludedFiles": ["*.spec.*", "packages/*/demo/**/*"],
"plugins": ["garden-local"],
"rules": {
"garden-local/require-default-theme": "error"
}
},
{
"files": ["*.spec.*"],
"extends": "@zendeskgarden/eslint-config/plugins/jest",
"rules": {
"no-console": "off",
"react/button-has-type": "off"
}
}
]
}