-
Notifications
You must be signed in to change notification settings - Fork 9
/
.eslintrc.js
78 lines (78 loc) · 2.53 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
module.exports = {
root: true,
parserOptions: {
ecmaVersion: 8,
sourceType: 'module'
},
extends: 'eslint:recommended',
env: {
browser: true,
es6: true,
jquery: true,
commonjs: true,
node: true
},
globals: {
'-Promise': true,
'require': true,
'module': true
},
rules: {
'semi': ['error', 'always'],
'no-unused-vars': ['error', { 'args': 'after-used' }],
'curly': 'error',
'no-alert': 'error',
'eqeqeq': 'error',
'no-eval': 'error',
'no-implied-eval': 'error',
'guard-for-in': 'error',
'wrap-iife': 'error',
'no-caller': 'error',
'no-new': 'error',
'no-eq-null': 'error',
'no-unused-expressions': 'error',
'accessor-pairs': 'error',
'block-scoped-var': 'error',
'no-loop-func': 'error',
'dot-notation': 'error',
'no-div-regex': 'error',
'no-extra-bind': 'error',
'no-iterator': 'error',
'no-labels': 'error',
'no-lone-blocks': 'error',
'no-new-func': 'error',
'no-new-wrappers': 'error',
'no-octal-escape': 'error',
'no-proto': 'error',
'no-return-assign': 'error',
'no-script-url': 'error',
'no-self-compare': 'error',
'no-useless-call': 'error',
'no-useless-concat': 'error',
'no-void': 'error',
'no-with': 'error',
'radix': 'error',
'yoda': 'error',
'no-catch-shadow': 'error',
'no-label-var': 'error',
'no-shadow-restricted-names': 'error',
'no-undef-init': 'error',
'no-use-before-define': 'error',
'callback-return': 'error',
'global-require': 'error',
'handle-callback-err': 'error',
'no-path-concat': 'error',
'no-process-exit': 'error',
'block-spacing': 'error',
'brace-style': ['error', '1tbs', { allowSingleLine: true }],
'comma-spacing': ['error', { before: false, after: true }],
'consistent-this': 'error',
'indent': ['error', 4, { 'SwitchCase': 1 }],
'object-curly-spacing': ['error', 'always', { objectsInObjects: false }],
'no-var': 'error',
'require-yield': 'error',
'space-before-function-paren': ['error', { anonymous: 'always', named: 'never', asyncArrow: 'always' }],
'object-shorthand': ['error', 'always', { avoidExplicitReturnArrows: true }],
'no-console': ["warn", { allow: ["warn", "error"] }]
}
};