forked from JustOxxy/leda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
135 lines (108 loc) · 4.37 KB
/
.eslintrc
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
134
135
{
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
// Максимальная длина строки с учетом пробелов, в стандарте 100
"max-len": ["error", 250],
// Точка с запятой нужна всегда
"babel/semi": "error",
// Дефолтные пропсы нам не нужны
"react/require-default-props": 0,
// Отключаем соответствие defaulProps и propTypes (propTypes не используются)
"react/default-props-match-prop-types": 0,
// В js файлах мы используем jsx синтаксис
"react/jsx-filename-extension": 0,
"react/jsx-one-expression-per-line": "off",
// Отредактируем организацию для порядка методов при создании React компонента
// Добавим в начало определение типов (type-annotations)
"react/sort-comp": [2, {
"order": [
"type-annotations",
"static-methods",
"lifecycle",
"everything-else",
"render"
]
}],
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn",
// Не используем дефолтный экспорт
"import/prefer-default-export": "off",
// один файл может содержать несколько экспортов
"import/no-cycle": "warn",
// По умолчанию рекомендуется проверять как вложенность, так и идентификатор на сопоставление лейбла с элементом управления
// Сделаем так, чтобы одной проверки было достаточно
"jsx-a11y/label-has-for": "off",
// Правила для accessibility:
// Элемент с обработчиком кликов должен иметь обработчик клавиатуры
"jsx-a11y/click-events-have-key-events": "off",
// Принудительное срабатывание onfocus/onblur при onmouseover/onmouseout
"jsx-a11y/mouse-events-have-key-events": "off",
// HTML элемент с обработчиком должен иметь роль
"jsx-a11y/no-static-element-interactions": "off",
"jsx-a11y/anchor-is-valid": "off",
// не всегда используется
// todo: обновить правило, когда появится опция minAttributes
"react/destructuring-assignment": "off",
// у нас лейбл не всегда имеет htmlFor
"jsx-a11y/label-has-associated-control": "off",
// поле current у ref является мутируемым
"no-param-reassign": ["error", { "ignorePropertyModificationsFor": ["ref"]}],
"@typescript-eslint/member-delimiter-style": ["error", {
"multiline": {
"delimiter": "comma",
"requireLast": true
},
"singleline": {
"delimiter": "comma",
"requireLast": false
}
}],
"no-use-before-define": ["error", { "functions": false }],
// spread разрешен
"react/jsx-props-no-spreading": "off",
"react/static-property-placement": "warn",
"react/state-in-constructor": "warn",
"no-console": ["error", { "allow": ["warn", "error"] }],
"@typescript-eslint/no-use-before-define": ["error", { "functions": false }],
"@typescript-eslint/ban-ts-ignore": "warn",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/explicit-member-accessibility": "warn",
"import/no-duplicates": "warn",
"no-unused-expressions": "off",
"@typescript-eslint/no-unused-expressions": "error",
// TODO: удалить и починить ошибки
"@typescript-eslint/no-empty-function": "warn"
},
"plugins": [
"jest",
"babel",
"@typescript-eslint",
"react-hooks",
"cypress"
],
"extends": [
"airbnb",
"airbnb-typescript",
"plugin:@typescript-eslint/recommended",
"plugin:jest/recommended",
"plugin:cypress/recommended"
],
"env": {
"browser": true,
"jest/globals": true,
"cypress/globals": true
},
"overrides": [
{
"files": [
"demo/**"
],
"rules": {
"no-console": "off"
}
}
]
}