-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
46 lines (45 loc) · 996 Bytes
/
.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
{
"extends": [
],
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
},
"plugins": [
"import",
"react"
],
"settings": {
"import/resolver": {
"webpack": {
"config": "./build/webpack/webpack.eslint.js",
"config-index": 1
}
},
"import/ignore": [
"node_modules",
".png$",
".jpg$"
]
},
"globals": {
"window": true,
"document": true
},
"rules": {
"import/no-duplicates": "off",
"import/no-named-as-default": "off",
"max-len": "off",
"linebreak-style": "off",
"react/jsx-filename-extension": 0,
"import/prefer-default-export": "off",
"react/forbid-prop-types": "off",
"react/prop-types": 0,
"react/no-danger": "off",
"react/require-default-props": "off",
"react/no-array-index-key": "off",
"no-use-before-define": 0
}
}