This repository has been archived by the owner on Apr 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.eslintrc.js
97 lines (94 loc) · 2.63 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
module.exports = {
root: true,
env: {
node: true,
},
parserOptions: {
sourceType: 'module',
parser: 'babel-eslint',
allowImportExportEverywhere: false,
ecmaVersion: 2020,
},
extends: [
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
],
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'semi': ['error', 'never'],
"indent": ["error", 2],
'array-bracket-newline': ['off', 'consistent'],
'array-element-newline': ['off', {
multiline: true,
minItems: 3,
}],
'array-bracket-spacing': ['error', 'never'],
'block-spacing': ['error', 'always'],
'brace-style': ['error', '1tbs', { allowSingleLine: true }],
camelcase: ['error', {
properties: 'always',
ignoreDestructuring: true,
}],
'eol-last': ['error', 'always'],
'function-call-argument-newline': ['off', 'consistent'],
'func-call-spacing': ['error', 'never'],
'newline-before-return': 'error',
'newline-per-chained-call': ['error', { ignoreChainWithDepth: 2 }],
'no-mixed-spaces-and-tabs': 'error',
'no-multi-assign': ['error'],
'no-multiple-empty-lines': ['error', {
max: 2,
maxBOF: 0,
maxEOF: 0,
}],
'no-spaced-func': 'error',
'object-curly-spacing': ['error', 'always'],
'object-curly-newline': ['error', {
ObjectExpression: {
minProperties: 4,
multiline: true,
consistent: true,
},
ObjectPattern: {
minProperties: 4,
multiline: true,
consistent: true,
},
ImportDeclaration: {
minProperties: 2,
multiline: true,
consistent: true,
},
ExportDeclaration: {
minProperties: 2,
multiline: true,
consistent: true,
},
}],
'comma-dangle': ['error', {
arrays: 'always-multiline',
objects: 'always-multiline',
imports: 'always-multiline',
exports: 'always-multiline',
functions: 'always-multiline',
}],
'object-property-newline': ['error', {
allowAllPropertiesOnSameLine: false,
}],
'space-in-parens': ['error', 'never'],
'space-infix-ops': 'error',
'template-tag-spacing': ['error', 'always'],
'@typescript-eslint/member-delimiter-style': ['error', {
multiline: {
delimiter: "none",
requireLast: true,
},
singleline: {
delimiter: "comma",
requireLast: false,
},
}],
'@typescript-eslint/explicit-function-return-type': ['error'],
},
}