-
Notifications
You must be signed in to change notification settings - Fork 73
/
.eslintrc.js
55 lines (55 loc) · 1.38 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
module.exports = {
parser: '@babel/eslint-parser',
env: {
es6: true,
node: true,
browser: true,
'jest/globals': true,
},
extends: [
'eslint:recommended',
'plugin:jest/recommended',
],
plugins: [
'jest',
],
parserOptions: {
ecmaFeatures: {
experimentalObjectRestSpread: true,
},
sourceType: 'module',
},
rules: {
'arrow-body-style': ['error', 'as-needed', {
requireReturnForObjectLiteral: true,
}],
'arrow-parens': ['error', 'as-needed'],
'arrow-spacing': 'error',
'camelcase': ['error', {properties: 'never'}],
'comma-dangle': ['error', 'always-multiline'],
'guard-for-in': 'error',
'indent': ['error', 2],
'keyword-spacing': 'error',
'linebreak-style': ['error','unix'],
'no-eq-null': 'error',
'no-multi-str': 'error',
'no-trailing-spaces': 'error',
'no-useless-escape': 'error',
'no-use-before-define': ['error', {'functions': false}],
'quotes': ['error', 'single'],
'semi': ['error', 'always'],
'space-before-blocks': ['error', {
classes: 'always',
functions: 'always',
keywords: 'always',
}],
'space-before-function-paren': ['error', 'never'],
'space-infix-ops': 'error',
'space-unary-ops': ['error', {
nonwords: false,
words: true,
}],
'jest/expect-expect': 'off',
'jest/valid-expect': 'off',
},
};