-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
86 lines (86 loc) · 2.12 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
module.exports = {
env: {
es6: true,
jest: true,
node: true
},
extends: ['eslint:recommended', 'standard'],
parserOptions: {
ecmaVersion: 6,
sourceType: 'module',
ecmaFeatures: {
experimentalObjectRestSpread: true,
generators: true
},
sourceType: 'module'
},
rules: {
'array-callback-return': 'error',
'arrow-body-style': 'error',
'arrow-parens': 'error',
'arrow-spacing': 'error',
'capitalized-comments': 'warn',
'computed-property-spacing': 'warn',
'consistent-return': 'warn',
curly: 'warn',
'default-case': 'error',
'dot-location': 'error',
'dot-notation': 'warn',
'func-names': 'error',
'func-style': [
'warn',
'declaration',
{
allowArrowFunctions: true
}
],
'generator-star-spacing': 'error',
'jsx-quotes': 'warn',
'linebreak-style': ['error', 'unix'],
'max-len': [
'warn',
{
code: 80,
comments: 80
}
],
'max-params': 'warn',
'no-alert': 'error',
'no-confusing-arrow': 'error',
'no-console': [
'warn',
{
allow: ['error', 'warn']
}
],
'no-delete-var': 'error',
'no-duplicate-imports': 'error',
'no-else-return': 'error',
'no-empty-function': 'error',
'no-lonely-if': 'error',
'no-negated-condition': 'error',
'no-path-concat': 'error',
'no-return-assign': 'warn',
'no-shadow': 'error',
'no-ternary': 'warn',
'no-useless-computed-key': 'error',
'no-useless-concat': 'warn',
'no-useless-constructor': 'error',
'no-useless-rename': 'error',
'no-useless-return': 'warn',
'no-var': 'error',
'object-curly-spacing': ['warn', 'always'],
'object-shorthand': 'error',
'prefer-const': 'error',
'prefer-rest-params': 'error',
'prefer-spread': 'error',
'prefer-template': 'error',
'quote-props': ['warn', 'as-needed'],
'rest-spread-spacing': 'error',
'sort-imports': 'off', // TODO: Enable (with pull request)
'sort-keys': 'error',
'sort-vars': 'error',
'spaced-comment': 'error',
'template-curly-spacing': 'error'
}
}