-
Notifications
You must be signed in to change notification settings - Fork 40
/
.eslintrc.js
104 lines (87 loc) · 3.01 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
99
100
101
102
103
104
'use strict';
module.exports = {
'env': {
'browser' : true,
'commonjs' : true,
'es6' : true,
'node' : true,
},
'extends' : 'eslint:recommended',
'parserOptions' : {
'sourceType' : 'module',
'ecmaVersion' : 8,
},
'rules': {
// Coding Style
'indent' : [2, 4, {'SwitchCase': 1, 'MemberExpression': 0}],
'linebreak-style' : [2, 'unix'],
'quotes' : [2, 'single'],
'semi' : [2, 'always'],
'brace-style' : [2, 'stroustrup'],
'space-before-blocks' : [2, 'always'],
'keyword-spacing' : 2,
'space-infix-ops' : 2,
'newline-per-chained-call' : 2,
'space-in-parens' : [2, 'never'],
'array-bracket-spacing' : [2, 'never'],
'max-len' : [2, {'code': 90, 'comments': 100}],
'comma-style' : [2, 'last'],
'comma-dangle' : [2, 'always-multiline'],
'camelcase' : 2,
'spaced-comment' : [2, 'always'],
// Warn about console.* and debugger
'no-alert' : 1,
'no-console' : 0,
'no-debugger' : 1,
// References
'prefer-const' : 2,
'no-const-assign' : 2,
'no-var' : 1,
// Objects
'no-new-object' : 2,
'object-shorthand' : [2, 'always', {'avoidQuotes' : true}],
'quote-props' : [2, 'as-needed'],
'object-curly-spacing' : [2, 'never'],
// Arrays
'array-callback-return' : 'error',
'prefer-template' : 2,
'no-array-constructor' : 1,
// Strings
'template-curly-spacing' : [2, 'never'],
'no-useless-escape' : 2,
'no-control-regex' : 0,
// Functions
'wrap-iife' : 2,
'no-loop-func' : 2,
'prefer-rest-params' : 2,
'no-param-reassign' : [1, {'props': true}],
'prefer-arrow-callback' : [2, {'allowNamedFunctions': true}],
'arrow-parens' : [2, 'as-needed'],
// 'arrow-body-style' : [2, 'as-needed'],
// Classes
'no-useless-constructor' : 2,
'no-dupe-class-members' : 2,
'getter-return' : 'off',
// Modules
'no-duplicate-imports': 2,
// Properties
'dot-notation': 2,
// Other
'eqeqeq' : [2, 'always'],
'radix' : [2, 'always'],
'no-case-declarations' : 2,
'no-nested-ternary' : 2,
'no-unneeded-ternary' : 2,
'for-direction' : 'off',
'no-trailing-spaces' : 'error',
// Complexity
'max-statements': [2, 20],
'max-params' : [1, 3],
'complexity' : [2, 5],
'max-depth' : [2, 4],
'max-nested-callbacks': [2, 3],
},
'globals': {
$: false,
},
};