-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
61 lines (56 loc) · 1.24 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
{
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6,
"ecmaFeatures": {
"sourceType": "module",
"allowImportExportEverywhere": true,
"codeFrame": false,
"experimentalObjectRestSpread": true,
"experimentalDecorators": true,
"jsx": true
}
},
"settings": {
"react": {
"pragma": "h"
}
},
"env": {
"es6": true,
"browser": true,
"node": true,
"jest": true
},
"plugins": [
"react",
"react-perf",
"import",
"jsx-a11y"
],
"extends": ["airbnb", "plugin:react/recommended", "plugin:react-perf/recommended"],
"rules": {
"no-console": 0,
"no-bitwise": 0,
"comma-dangle": 0,
"global-require": 0,
"no-plusplus": 0,
"no-mixed-operators": 0,
"no-restricted-syntax": 0,
"no-multi-assign": 0,
"no-shadow": 0,
"no-alert": 0,
"guard-for-in": 0,
"arrow-parens": 0,
"class-methods-use-this": 0,
"react/prop-types": 0,
"react/jsx-no-bind": 0,
"react/no-array-index-key": 0,
"jsx-a11y/img-has-alt": 0,
"jsx-a11y/href-no-hash": 0,
"import/prefer-default-export": 0,
"jsx-a11y/no-static-element-interactions": 0,
"no-floating-decimal": 0,
"jsx-a11y/label-has-for": 0
}
}