-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
131 lines (131 loc) · 3.4 KB
/
.eslintrc.js
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
126
127
128
129
130
131
module.exports = {
extends: [
'airbnb',
'airbnb-typescript',
'airbnb/hooks',
'plugin:prettier/recommended',
'plugin:react/recommended',
'plugin:@typescript-eslint/recommended',
],
plugins: ['prettier', 'react', '@typescript-eslint', 'react-hooks'],
env: {
jest: true,
browser: true,
node: true,
},
parserOptions: {
project: ['./tsconfig.json'],
},
parser: '@typescript-eslint/parser',
settings: {
'import/resolver': {
node: {
paths: ['./src'],
},
},
},
globals: {
window: 'readonly',
},
rules: {
'prettier/prettier': 'error',
'react/jsx-props-no-spreading': 'off',
'react/state-in-constructor': ['error', 'never'],
'react/no-array-index-key': 'off',
'react/prop-types': 'off',
'react/no-danger': 'error',
'react/static-property-placement': 'off',
'react/require-default-props': 'off',
'react/display-name': 'off',
'react/destructuring-assignment': 'off',
'react/sort-comp': [
'error',
{
order: [
'static-variables',
'static-methods',
'instance-variables',
'getters',
'setters',
'lifecycle',
'render',
'instance-methods',
'everything-else',
],
},
],
'react-hooks/exhaustive-deps': [
'error',
{
additionalHooks: '(useSubscribable|useCommunication)',
},
],
'import/no-extraneous-dependencies': 'off',
'import/named': 'off',
'import/prefer-default-export': 'off',
'import/no-default-export': 'error',
'import/no-cycle': 'off',
'import/no-unresolved': 'off',
'import/order': [
'error',
{
groups: [['builtin', 'external'], 'internal', ['parent', 'sibling'], 'index'],
'newlines-between': 'always',
},
],
'@typescript-eslint/no-unused-expressions': [
'error',
{
allowShortCircuit: true,
},
],
'@typescript-eslint/no-use-before-define': 'off',
'@typescript-eslint/type-annotation-spacing': [
'error',
{
before: false,
after: true,
overrides: { arrow: { before: true, after: true } },
},
],
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/lines-between-class-members': [
'error',
'always',
{ exceptAfterSingleLine: true },
],
'@typescript-eslint/no-empty-interface': [
'error',
{
allowSingleExtends: true,
},
],
'@typescript-eslint/no-inferrable-types': ['error', { ignoreParameters: true }],
'@typescript-eslint/naming-convention': [
'error',
{
selector: 'enum',
format: ['UPPER_CASE'],
},
],
'no-restricted-imports': [
'error',
{
paths: ['@material-ui/core', '@material-ui/icons', '@material-ui/lab', 'rxjs/fetch'],
patterns: [
{
group: ['@material-ui/lab/Skeleton', '@material-ui/lab/Skeleton/*'],
message: 'Please import Skeleton from components',
},
],
},
],
'no-unused-expressions': ['error', { allowShortCircuit: true, allowTernary: true }],
'no-console': ['error', { allow: ['info', 'warn', 'error'] }],
'lines-between-class-members': 'off',
'no-undef': 'off',
'consistent-return': 'off',
'default-case': 'off',
},
};