-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc.json
60 lines (60 loc) · 1.68 KB
/
.eslintrc.json
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
{
"extends": [
"standard",
"plugin:import/errors",
"plugin:import/warnings"
],
"plugins": [
"jest",
"prettier"
],
"env": {
"jest/globals": true
},
"rules": {
"import/no-extraneous-dependencies": ["error", {"devDependencies": ["dangerfile.js", "scripts/**"], "optionalDependencies": false, "peerDependencies": false}],
"prettier/prettier": "error",
"arrow-spacing": "off",
"block-spacing": "off",
"brace-style": "off",
"comma-dangle": "off",
"comma-spacing": "off",
"comma-style": "off",
"dot-location": "off",
"eol-last": "off",
"func-call-spacing": "off",
"generator-star-spacing": "off",
"indent": "off",
"key-spacing": "off",
"keyword-spacing": "off",
"new-parens": "off",
"no-extra-parens": "off",
"no-floating-decimal": "off",
"no-mixed-spaces-and-tabs": "off",
"no-multi-spaces": "off",
"no-multiple-empty-lines": "off",
"no-trailing-spaces": "off",
"no-whitespace-before-property": "off",
"object-property-newline": "off",
"operator-linebreak": "off",
"padded-blocks": "off",
"rest-spread-spacing": "off",
"semi": "off",
"semi-spacing": "off",
"space-before-blocks": "off",
"space-before-function-paren": "off",
"space-in-parens": "off",
"space-infix-ops": "off",
"space-unary-ops": "off",
"standard/array-bracket-even-spacing": "off",
"standard/computed-property-even-spacing": "off",
"standard/object-curly-even-spacing": "off",
"template-curly-spacing": "off",
"template-tag-spacing": "off",
"unicode-bom": "off",
"wrap-iife": "off",
"yield-star-spacing": "off",
"curly": "off",
"quotes": "off"
}
}