-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
.eslintrc.js
54 lines (53 loc) · 1.68 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
let tabSize = 4;
module.exports = {
'env': {
'browser': true,
'es6': true,
'node': true,
},
'parser': 'babel-eslint',
'extends': [
'eslint:recommended',
],
'ignorePatterns': ['docs', '*.ts'],
'globals': {
'module': 'readonly',
},
'parserOptions': {
'ecmaFeatures': {
'legacyDecorators': true
},
'ecmaVersion': 2018,
'sourceType': 'module'
},
'rules': {
indent: ['error', tabSize, {ignoredNodes: ['TemplateLiteral'], SwitchCase: 1}], // игнорируем string template из-за ошибки в пакетах
quotes: ['error', 'single'],
semi: ['warn', 'always'],
curly: ['error', 'multi-line'],
'arrow-parens': ['error', 'as-needed', {requireForBlockBody: true}],
'no-unused-vars': [
'warn',
{
ignoreRestSiblings: true,
argsIgnorePattern: '^e$',
varsIgnorePattern: '^_$',
},
],
'max-len': ['error', {code: 120, ignoreStrings: true, ignoreComments: true}],
'object-curly-spacing': ['error', 'never'],
'array-bracket-spacing': ['error', 'never'],
'comma-style': ['error', 'last'],
'comma-spacing': ['error', {'before': false, 'after': true}],
'space-infix-ops': 'error',
'space-in-parens': ['error', 'never'],
'space-before-function-paren': ['error', {
'anonymous': 'always',
'named': 'never',
'asyncArrow': 'always'
}],
'keyword-spacing': 'error',
'arrow-spacing': 'error',
'space-before-blocks': 'error',
},
};