-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
133 lines (133 loc) · 4.07 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
132
133
module.exports = {
extends: ['airbnb-base', 'airbnb-typescript', 'plugin:react/recommended', 'plugin:prettier/recommended'],
plugins: ['react', '@typescript-eslint', 'prettier', 'react-hooks'],
env: {
jest: true,
browser: true,
node: true,
},
settings: {
'import/resolver': {
node: {
paths: ['./src'],
},
},
},
globals: {
window: 'readonly',
},
parser: '@typescript-eslint/parser',
parserOptions: {
project: ['./tsconfig.json'],
},
rules: {
'react/boolean-prop-naming': ['error', { rule: '^(is|has)[A-Z]([A-Za-z0-9]?)+' }],
'@typescript-eslint/naming-convention': [
'warn',
[
{
selector: ['variable'],
types: ['boolean'],
prefix: ['is', 'has'],
},
{
selector: ['typeLike'],
format: ['PascalCase'],
},
{
selector: ['interface'],
prefix: ['I'],
},
{
selector: ['enum'],
format: ['PascalCase'],
postfix: ['Enum'],
},
{
selector: ['enumMember'],
format: ['UPPER_CASE'],
},
],
],
'react/display-name': 'off',
'prettier/prettier': 'warn',
'object-curly-newline': 'off',
'react/no-unused-prop-types': 'error',
'no-nested-ternary': 'warn',
'operator-linebreak': 'off',
'arrow-parens': 'off',
'@typescript-eslint/naming-convention': 'warn',
'react/require-default-props': 'off',
'max-len': 'off',
'react/jsx-indent': 'off',
'react/jsx-indent-props': 'off',
'no-await-in-loop': 'warn',
'@typescript-eslint/indent': 'off',
'no-param-reassign': 'warn',
'jsx-a11y/no-autofocus': 'off',
'@typescript-eslint/no-unused-vars': 'error',
'no-prototype-builtins': 'warn',
'@typescript-eslint/no-explicit-any': ['warn', { ignoreRestArgs: true }],
'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/destructuring-assignment': ['error', 'always', { ignoreClassFields: true }],
'react/sort-comp': [
'error',
{
order: [
'static-variables',
'static-methods',
'instance-variables',
'getters',
'setters',
'lifecycle',
'render',
'instance-methods',
'everything-else',
],
},
],
'import/prefer-default-export': 'off',
'import/no-default-export': 'error',
'import/no-cycle': 'off',
'import/no-unresolved': 'off',
'import/order': [
'warn',
{
groups: [['builtin', 'external'], 'internal', ['parent', 'sibling'], 'index'],
'newlines-between': 'always',
},
],
'@typescript-eslint/no-use-before-define': 'off',
'@typescript-eslint/type-annotation-spacing': [
'error',
{
before: false,
after: true,
overrides: { arrow: { before: true, after: true } },
},
],
'no-restricted-imports': ['error', '@material-ui/core', '@material-ui/icons'],
'no-unused-expressions': ['error', { allowShortCircuit: true, allowTernary: true }],
'no-console': ['error', { allow: ['info', 'warn', 'error'] }],
'lines-between-class-members': ['error', 'always', { exceptAfterSingleLine: true }],
'no-undef': 'off',
'consistent-return': 'off',
'jsx-a11y/control-has-associated-label': 'off',
'jsx-a11y/label-has-associated-control': 'off',
'jsx-a11y/click-events-have-key-events': 'off',
'jsx-a11y/no-static-element-interactions': 'off',
'@typescript-eslint/no-unused-expressions': ['error', { allowShortCircuit: true, allowTernary: true }],
'react-hooks/rules-of-hooks': 'error',
'react-hooks/exhaustive-deps': 'warn',
'react/button-has-type': 'off',
'jsx-a11y/anchor-is-valid': 'off',
'default-param-last': 'off',
'@typescript-eslint/default-param-last': ['warn'],
'no-plusplus': ['error', { allowForLoopAfterthoughts: true }],
},
};