forked from GetStream/react-activity-feed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
104 lines (104 loc) · 2.71 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
{
"root": true,
"plugins": ["babel", "sonarjs", "prettier", "react-hooks", "jest-dom", "jest"],
"extends": [
"eslint:recommended",
"plugin:prettier/recommended",
"plugin:react/recommended",
"plugin:sonarjs/recommended",
"plugin:mdx/recommended",
"plugin:jest/recommended",
"plugin:jest-dom/recommended"
],
"rules": {
"no-console": 0,
"no-mixed-spaces-and-tabs": 1,
"comma-dangle": 0,
"no-unused-vars": 1,
"eqeqeq": [2, "smart"],
"no-useless-concat": 2,
"default-case": 2,
"no-self-compare": 2,
"prefer-const": 1,
"no-underscore-dangle": [2, { "allowAfterThis": true }],
"object-shorthand": 1,
"babel/no-invalid-this": 2,
"array-callback-return": 2,
"valid-typeof": 2,
"arrow-body-style": 2,
"require-await": 2,
"react/prop-types": 0,
"no-var": 2,
"linebreak-style": [2, "unix"],
"sonarjs/cognitive-complexity": ["error", 35],
"sonarjs/no-duplicate-string": ["error", 5],
"semi": [1, "always"]
},
"env": {
"es6": true,
"node": true,
"browser": true
},
"parser": "babel-eslint",
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2018,
"ecmaFeatures": {
"modules": true
}
},
"overrides": [
{
"files": ["**/*.ts", "**/*.tsx"],
"parser": "@typescript-eslint/parser",
"plugins": [
"prettier",
"react-hooks",
"jest",
"jest-dom",
"sonarjs",
"@typescript-eslint",
"typescript-sort-keys"
],
"extends": [
"eslint:recommended",
"plugin:prettier/recommended",
"plugin:react/recommended",
"plugin:sonarjs/recommended",
"plugin:jest/recommended",
"plugin:jest-dom/recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"lines-between-class-members": 0,
"@typescript-eslint/explicit-module-boundary-types": 0,
"@typescript-eslint/ban-ts-comment": 0,
"no-useless-constructor": 0,
"react/prop-types": 0,
"@typescript-eslint/no-empty-function": 0,
"@typescript-eslint/triple-slash-reference": 0,
"typescript-sort-keys/interface": [
"error",
"asc",
{ "caseSensitive": false, "natural": true, "requiredFirst": true }
],
"typescript-sort-keys/string-enum": ["error", "asc", { "caseSensitive": false, "natural": true }]
}
},
{
"files": ["*.md", "*.mdx"],
"extends": ["plugin:mdx/overrides"],
"rules": {
"react/jsx-no-undef": 0,
"react/react-in-jsx-scope": 0,
"semi": 0,
"no-undef": 0
}
}
],
"settings": {
"react": {
"version": "detect"
}
}
}