-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
90 lines (90 loc) · 2.48 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
module.exports = {
parser: '@typescript-eslint/parser',
ignorePatterns: [
'webpack-configs/*',
'node_modules/*',
'build/*',
'webpack.config.js',
'webpack-configs/common.js',
'webpack-configs/dev.js',
'webpack-configs/prod.js',
],
parserOptions: {
ecmaVersion: 2020,
sourceType: 'module',
ecmaFeatures: {
jsx: true,
},
},
settings: {
react: {
version: 'detect',
},
},
plugins: ['@typescript-eslint'],
extends: [
'plugin:react/recommended',
'plugin:@typescript-eslint/recommended',
],
rules: {
'@typescript-eslint/no-unused-vars': ['error'],
'@typescript-eslint/no-var-requires': 'off',
'@typescript-eslint/type-annotation-spacing': [
'error',
{
before: true,
after: true,
overrides: { colon: { before: false, after: true } },
},
],
'@typescript-eslint/member-delimiter-style': [
'error',
{
multiline: {
delimiter: 'comma',
requireLast: true,
},
singleline: {
delimiter: 'comma',
requireLast: false,
},
},
],
'array-bracket-spacing': ['error', 'never'],
'padding-line-between-statements': [
'error',
{ blankLine: 'always', prev: 'const', next: 'return' },
],
'one-var': ['error', 'never'],
'no-multiple-empty-lines': ['error', { max: 1, maxEOF: 1 }],
'jsx-quotes': ['error', 'prefer-double'],
'quotes': ['error', 'single'],
'semi': 'off',
'@typescript-eslint/semi': ['error', 'never'],
'no-var': 'error',
'object-curly-spacing': ['error', 'always'],
'curly': 'error',
'function-paren-newline': ['error', 'multiline-arguments'],
'max-len': ['error', { code: 120 }],
'space-unary-ops': 'error',
'no-console': ['error', { allow: ['warn', 'error'] }],
'keyword-spacing': ['error', { before: true }],
'space-in-parens': ['error', 'never'],
'comma-spacing': ['error', { before: false, after: true }],
'comma-dangle': ['error', 'always-multiline'],
'indent': ['error', 2, { SwitchCase: 1 }],
'space-infix-ops': 'error',
'eol-last': ['error', 'always'],
'newline-before-return': 'error',
'no-restricted-imports': 'off',
'@typescript-eslint/no-restricted-imports': [
'warn',
{
name: 'react-redux',
importNames: ['useSelector', 'useDispatch'],
message:
'Use typed hooks `useAppDispatch` and `useAppSelector` instead.',
},
],
},
}