-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
80 lines (80 loc) · 2.19 KB
/
.eslintrc
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
{
"env": {
"browser": true,
"es6": true,
"jest": true,
"node": true
},
"extends": [
"plugin:react/recommended"
],
"parser": "babel-eslint",
"parserOptions": {
"sourceType": "module"
},
"plugins": [
"jest",
"react-hooks"
],
"rules": {
"arrow-parens": [ 2, "as-needed" ],
"brace-style": 2,
"camelcase": 0,
"comma-dangle": 0,
"comma-spacing": [ 2, { "after": true } ],
"curly": [ 2, "all" ],
"indent": [ 2, 2, { "SwitchCase": 1, "ignoredNodes": ["TemplateLiteral"] } ],
"jest/no-focused-tests": 2,
"jest/no-identical-title": 2,
"jest/consistent-test-it": [
"error",
{
"fn": "it",
"withinDescribe": "it"
}
],
"jest/no-jest-import": 2,
"jest/no-test-prefixes": 2,
"jest/no-test-return-statement": 2,
"jsx-quotes": [ 2, "prefer-single" ],
"key-spacing": [ 2, { "beforeColon": false, "afterColon": true } ],
"keyword-spacing": [ 2, { "overrides": { "else": { "before": true } } } ],
"linebreak-style": [ 2, "unix" ],
"max-len": 0,
"no-debugger": 2,
"no-dupe-keys": 2,
"no-else-return": 0,
"no-mixed-spaces-and-tabs": 2,
"no-multi-spaces": 2,
"no-multiple-empty-lines": 2,
"no-template-curly-in-string": 2,
"no-trailing-spaces": 2,
"no-undef": 2,
"no-unused-vars": [ 2, { "vars": "all", "args": "after-used", "ignoreRestSiblings": true } ],
"no-var": 1,
"no-with": 2,
"one-var": 0,
"padded-blocks": [ 2, "never" ],
"prefer-arrow-callback": 2,
"prefer-destructuring": [ 2, { "array": false, "object": true } ],
"prefer-template": 2,
"quote-props": [ 2, "as-needed" ],
"quotes": [ 2, "single" ],
"react-hooks/exhaustive-deps": "warn",
"react-hooks/rules-of-hooks": "error",
"react/jsx-sort-props": [ 2, { "ignoreCase": true } ],
"react/no-unused-prop-types": 2,
"react/self-closing-comp": 2,
"semi": [ 2, "always" ],
"space-before-blocks": [ 2, "always" ],
"space-in-parens": [ 2, "never" ],
"space-infix-ops": 2,
"space-unary-ops": [ 2, { "nonwords": false } ],
"spaced-comment": [ 2, "always" ]
},
"settings": {
"react": {
"version": "16.12"
}
}
}