-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
55 lines (55 loc) · 1.47 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
{
"parser": "babel-eslint",
"extends": ["airbnb", "plugin:react/recommended", "prettier", "prettier/react"],
"plugins": ["jest", "react-hooks"],
"env": {
"browser": true,
"es6": true,
"node": true,
"worker": true,
"jest/globals": true
},
"rules": {
"arrow-body-style": 0,
"class-methods-use-this": 0,
"function-paren-newline": 0,
"func-names": 0,
"global-require": 0,
"import/no-dynamic-require": 0,
"import/no-extraneous-dependencies": [2, {}],
"jsx-a11y/anchor-is-valid": 0,
"jsx-a11y/click-events-have-key-events": 0,
"jsx-a11y/href-no-hash": 0,
"linebreak-style": 0,
"no-console": 0,
"no-irregular-whitespace": 0,
"no-param-reassign": 0,
"no-restricted-globals": 0,
"no-underscore-dangle": 0,
"no-unused-vars": 1,
"object-curly-spacing": 0,
"prefer-arrow-callback": 0,
"prefer-destructuring": 0,
"prefer-template": 1,
"react/forbid-prop-types": 0,
"react/jsx-indent-props": 0,
"react/jsx-filename-extension": 0,
"react/jsx-boolean-value": 0,
"react/jsx-no-bind": 2,
"react/jsx-one-expression-per-line": 0,
"react/no-danger": 0,
"react/prefer-stateless-function": 1,
"react/prop-types": 2,
"react/react-in-jsx-scope": 0,
"react/jsx-props-no-spreading": 0,
"react-hooks/rules-of-hooks": 2,
"react-hooks/exhaustive-deps": 2
},
"settings": {
"import/resolver": {
"babel-module": {
"root": ["./"]
}
}
}
}