forked from GetStream/stream-chat-react
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc.json
79 lines (79 loc) · 1.7 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
{
"root": true,
"plugins": [
"babel",
"markdown",
"sonarjs",
"prettier",
"react-hooks",
"jest-dom",
"jest"
],
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"airbnb-base",
"plugin:prettier/recommended",
"plugin:jest/all",
"plugin:jest-dom/recommended",
"plugin:sonarjs/recommended"
],
"rules": {
"no-console": 0,
"eqeqeq": [2, "smart"],
"no-underscore-dangle": [2, { "allowAfterThis": true }],
"babel/no-invalid-this": 2,
"valid-typeof": 2,
"require-await": 2,
"react/prop-types": 0,
"linebreak-style": [2, "unix"],
"import/prefer-default-export": 0,
"import/extensions": [0],
"max-classes-per-file": 0,
"camelcase": 0,
"react-hooks/rules-of-hooks": 2,
"react-hooks/exhaustive-deps": 1,
"jest/prefer-inline-snapshots": 0,
"jest/lowercase-name": 0,
"jest/prefer-expect-assertions": 0,
"jest/no-hooks": 0,
"sonarjs/cognitive-complexity": ["error", 30],
"no-unused-expressions": "off",
"babel/no-unused-expressions": "error",
"jest/no-if": "off"
},
"env": {
"es6": true,
"browser": true
},
"parser": "babel-eslint",
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2018,
"ecmaFeatures": {
"modules": true
}
},
"settings": {
"react": {
"version": "detect"
},
"import/resolver": {
"alias": {
"map": [["mock-builders", "./src/mock-builders"]],
"extensions": [".js"]
}
}
},
"overrides": [
{
"files": ["*.md"],
"rules": {
"react/jsx-no-undef": 0,
"react/react-in-jsx-scope": 0,
"semi": 0,
"no-undef": 0
}
}
]
}