forked from lodash/lodash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
82 lines (61 loc) · 1.58 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
module.exports = {
'extends': ['plugin:import/errors'],
'plugins': ['import'],
'env': {
'es6': true
},
'parserOptions': {
'ecmaVersion': 6,
'sourceType': 'module',
'ecmaFeatures': {
'impliedStrict': true,
'objectLiteralDuplicateProperties': false
}
},
'rules': {
'comma-dangle': ['error', 'never'],
'indent': ['error', 2, {
'SwitchCase': 1
}],
'max-len': ['error', {
'code': 180,
'ignoreComments': true,
'ignoreRegExpLiterals': true
}],
'quotes': ['error', 'single', {
'avoidEscape': true,
'allowTemplateLiterals': true
}],
'keyword-spacing': ['error'],
// ECMAScript 6 rules
'arrow-body-style': ['error', 'as-needed', {
'requireReturnForObjectLiteral': false
}],
'arrow-parens': ['error', 'as-needed', {
'requireForBlockBody': true
}],
'arrow-spacing': ['error', {
'before': true,
'after': true
}],
'no-class-assign': ['error'],
'no-const-assign': ['error'],
'no-dupe-class-members': ['error'],
'no-duplicate-imports': ['error'],
'no-new-symbol': ['error'],
'no-useless-rename': ['error'],
'no-var': ['error'],
'object-shorthand': ['error', 'always', {
'ignoreConstructors': false,
'avoidQuotes': true
}],
'prefer-arrow-callback': ['error', {
'allowNamedFunctions': false,
'allowUnboundThis': true
}],
'prefer-const': ['error'],
'prefer-rest-params': ['error'],
'prefer-template': ['error'],
'template-curly-spacing': ['error', 'always']
}
};