forked from RESTEDClient/RESTED
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
67 lines (67 loc) · 1.25 KB
/
.eslintrc.json
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
{
"extends": "airbnb",
"env": {
"browser": true,
"es6": true,
"jest": true
},
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"jsx": true
},
"sourceType": "module"
},
"globals": {
"ENV": false,
"chrome": false
},
"rules": {
"arrow-parens": [
"error",
"as-needed"
],
"function-paren-newline": ["error", "consistent"],
"object-curly-newline": ["error", { "consistent": true }],
"import/no-named-as-default": [
"off"
],
"import/extensions": [
"error",
"never"
],
"new-cap": [
"error",
{
"capIsNewExceptions": [
"List",
"DragSource",
"DropTarget",
"DragDropContext",
"Map"
]
}
],
"jsx-a11y/label-has-for": "off",
"jsx-a11y/no-autofocus": "off",
"react/no-typos": "off",
"react/no-array-index-key": "off",
"react/require-default-props": "off",
"react/jsx-filename-extension": [
"error",
{
"extensions": [
".js"
]
}
]
},
"settings": {
"import/resolver": {
"webpack": {
"config": "webpack.config.js"
}
}
}
}