This repository has been archived by the owner on Jun 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
.eslintrc.js
96 lines (94 loc) · 2.09 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
module.exports = {
'parser' : '@babel/eslint-parser',
'env' : {
'browser' : true,
'commonjs' : true,
'es2021' : true,
'node' : true,
},
'extends' : 'eslint:recommended',
'parserOptions' : {
'ecmaVersion' : 12,
'requireConfigFile' : false,
},
'rules' : {
'indent' : [
'error',
'tab',
{
'SwitchCase' : 1,
},
],
'quotes' : [
'error',
'single',
],
'semi' : [
'error',
'never',
],
'no-unused-vars' : [
'error',
{
'varsIgnorePattern' : '^_',
},
],
'no-trailing-spaces' : [
'error',
{
'skipBlankLines' : true,
'ignoreComments' : true,
},
],
'dot-notation' : [
'error',
],
'comma-dangle' : [
'error',
{
'arrays' : 'only-multiline',
'objects' : 'always-multiline',
'imports' : 'never',
'exports' : 'never',
'functions' : 'never',
}
],
'key-spacing' : [
'error',
{
'beforeColon' : true,
'afterColon' : true,
'mode' : 'minimum',
},
],
'array-bracket-spacing' : [
'error',
'never'
],
'no-await-in-loop' : 'error',
'no-promise-executor-return' : 'error',
'no-useless-backreference' : 'error',
'require-atomic-updates' : 'error',
'default-case' : 'error',
'eqeqeq' : 'error',
'no-else-return' : 'error',
'no-global-assign' : 'error',
'no-implicit-globals' : 'error',
'no-multi-str' : 'error',
'no-param-reassign' : 'error',
'no-return-await' : 'error',
'no-sequences' : 'error',
'no-unused-expressions' : 'error',
'comma-spacing' : 'error',
'func-call-spacing' : 'error',
'keyword-spacing' : 'error',
'no-lonely-if' : 'error',
'no-unneeded-ternary' : 'error',
'arrow-parens' : 'error',
'no-var' : 'error',
'prefer-const' : 'error',
'prefer-arrow-callback' : 'error',
'prefer-template' : 'error',
'no-useless-concat' : 'error',
},
}