-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
57 lines (57 loc) · 1.17 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
{
"extends": [
"prettier",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:prettier/recommended",
"plugin:react/recommended"
],
"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",
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": true,
"optionalDependencies": true
}
],
"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
}
}