forked from FSGModding/FSG_Mod_Assistant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
92 lines (89 loc) · 2.65 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
module.exports = {
'env' : {
'browser' : true,
'commonjs' : true,
'es2021' : true,
'node' : true,
},
'extends' : 'eslint:recommended',
'parser' : '@babel/eslint-parser',
'parserOptions' : {
'ecmaVersion' : 12,
'requireConfigFile' : false,
},
'rules' : {
'comma-dangle' : [
'error',
{
'arrays' : 'only-multiline',
'exports' : 'never',
'functions' : 'never',
'imports' : 'never',
'objects' : 'always-multiline',
}
],
'indent' : [
'error',
'tab',
{
'SwitchCase' : 1,
},
],
'key-spacing' : [
'error',
{
'afterColon' : true,
'beforeColon' : true,
'mode' : 'minimum',
},
],
'no-trailing-spaces' : [
'error',
{
'ignoreComments' : true,
'skipBlankLines' : true,
},
],
'no-unused-vars' : [
'error',
{
'varsIgnorePattern' : '^_|^client',
},
],
'array-bracket-spacing' : ['error', 'never'],
'arrow-parens' : 'error',
'comma-spacing' : 'error',
'default-case' : 'error',
'dot-notation' : 'error',
'eqeqeq' : 'error',
'func-call-spacing' : 'error',
'keyword-spacing' : 'error',
'no-await-in-loop' : 'error',
'no-console' : 'warn',
'no-duplicate-imports' : 'error',
'no-else-return' : 'error',
'no-global-assign' : 'error',
'no-implicit-globals' : 'error',
'no-lonely-if' : 'error',
'no-multi-str' : 'error',
'no-param-reassign' : 'error',
'no-promise-executor-return' : 'error',
'no-return-await' : 'error',
'no-sequences' : 'error',
'no-template-curly-in-string' : 'error',
'no-unneeded-ternary' : 'error',
'no-unused-expressions' : 'error',
'no-unused-private-class-members' : 'error',
'no-useless-backreference' : 'error',
'no-useless-concat' : 'error',
'no-var' : 'error',
'prefer-arrow-callback' : 'error',
'prefer-const' : 'error',
'prefer-template' : 'error',
'quotes' : ['error', 'single'],
'require-atomic-updates' : 'error',
'semi' : ['error', 'never'],
'complexity' : ['warn', 15],
'sort-keys' : ['warn', 'asc', {'allowLineSeparatedGroups' : true, 'caseSensitive' : false, 'minKeys' : 4, 'natural' : true}],
},
}