-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
98 lines (92 loc) · 2.54 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
module.exports = {
root: true,
env: {
node: true,
},
parser: "@typescript-eslint/parser",
parserOptions: {
sourceType: 'module',
allowImportExportEverywhere: false,
ecmaVersion: 2020,
ecmaFeatures: {
jsx: true,
},
},
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
],
plugins: [
'react',
],
rules: {
"@typescript-eslint/explicit-module-boundary-types": 0,
"@typescript-eslint/no-unused-vars": 0,
'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'],
},
}