forked from salute-developers/plasma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
133 lines (127 loc) · 4.29 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',
'airbnb/hooks',
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended',
'plugin:cypress/recommended',
'prettier/react',
],
parser: '@typescript-eslint/parser',
plugins: ['react', 'import', 'prettier', 'cypress'],
rules: {
'@typescript-eslint/no-empty-function': 'off',
'no-restricted-syntax': 'off', // for...of
'spaced-comment': ['error', 'always', { markers: ['/'] }], // ts-require directive
'comma-dangle': ['error', 'always-multiline'],
'arrow-parens': ['error', 'always'],
'space-before-function-paren': [
'error',
{
anonymous: 'never',
named: 'never',
asyncArrow: 'always',
},
],
indent: 'off',
'max-len': [
'error',
120,
2,
{
ignoreUrls: true,
ignoreComments: false,
ignoreRegExpLiterals: true,
ignoreStrings: true,
ignoreTemplateLiterals: true,
},
],
'padding-line-between-statements': [
'error',
{ blankLine: 'always', prev: '*', next: 'return' },
{ blankLine: 'always', prev: '*', next: 'if' },
],
'implicit-arrow-linebreak': 'off',
'no-plusplus': 'off',
'max-classes-per-file': 'off',
'operator-linebreak': 'off',
'object-curly-newline': 'off',
'class-methods-use-this': 'off',
'no-confusing-arrow': 'off',
'function-paren-newline': 'off',
'no-param-reassign': 'off',
'no-shadow': 'warn',
'space-before-function-paren': 'off',
'consistent-return': 'off',
'prettier/prettier': 'error',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/ban-types': [
'error',
{
extendDefaults: true,
types: {
'{}': false,
object: false,
},
},
],
'react/prop-types': 'off',
'react/static-property-placement': 'off',
'react/state-in-constructor': 'off',
'react/jsx-filename-extension': ['error', { extensions: ['.tsx'] }],
'react/jsx-one-expression-per-line': 'off',
'react/jsx-indent': ['error', 4],
'react/jsx-indent-props': ['error', 4],
'react/jsx-props-no-spreading': 'off',
'react/destructuring-assignment': 'off',
'react/sort-comp': 'off',
'react/no-array-index-key': 'off',
'react-hooks/exhaustive-deps': 'off', // TODO: вернуть на warn, а затем https://github.com/salute-developers/plasma/issues/160
'jsx-a11y/no-static-element-interactions': 'off',
'jsx-a11y/click-events-have-key-events': 'off',
'jsx-a11y/no-noninteractive-tabindex': 'off',
'import/prefer-default-export': 'off', // https://humanwhocodes.com/blog/2019/01/stop-using-default-exports-javascript-module/
'import/order': [
'error',
{
groups: [['builtin', 'external'], 'internal', 'parent', 'sibling', 'index'],
'newlines-between': 'always',
},
],
'import/no-unresolved': 'off',
'import/extensions': 'off',
'import/no-extraneous-dependencies': ['off'],
'arrow-body-style': 'off',
'padding-line-between-statements': 'off',
'no-unused-expressions': 'off',
'no-use-before-define': 'off',
'@typescript-eslint/no-empty-function': 'off',
'@typescript-eslint/no-empty-interface': 'off',
},
overrides: [
{
files: ['*.tsx?'],
env: {
browser: true,
},
globals: {
window: true,
document: true,
},
},
{
files: ['*.test.tsx?', '*.test.js'],
plugins: ['jest'],
env: {
browser: true,
mocha: true,
'jest/globals': true,
},
},
],
settings: {
react: {
version: '16.13.1',
},
},
};