-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
44 lines (44 loc) · 1002 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
{
"extends": "airbnb",
"parser": "babel-eslint",
"rules": {
"global-require": ["off"],
"no-param-reassign": ["off"],
"max-len": ["off"],
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": [
"**/*.test.js?(x)"
]
}
],
"import/prefer-default-export": ["off"],
"import/no-dynamic-require": ["off"],
"import/no-named-as-default": ["off"],
"import/no-unresolved": [
"error",
{
"commonjs": true,
"ignore": [
"^~static"
]
}
],
"react/prop-types": ["off"],
"react/jsx-props-no-spreading": ["off"],
"react/jsx-one-expression-per-line": ["off"],
"react/no-danger": ["off"],
"react/no-render-return-value": ["off"],
"react/no-find-dom-node": ["off"],
"react/jsx-filename-extension": ["off"],
"jsx-a11y/label-has-for": ["off"]
},
"env": {
"jest": true
},
"globals": {
"window": true,
"firebase": true
}
}