forked from nexxtway/react-rainbow-firebase-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
43 lines (43 loc) · 1.08 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
{
"extends": "airbnb",
"plugins": [
"babel",
"react",
"jest",
"jsx-a11y",
"import"
],
"rules": {
"indent": [2, 4, {"SwitchCase": 1}],
"react/jsx-filename-extension": [2, { "extensions": [".js", ".jsx"] }],
"react/jsx-indent": [0],
"react/jsx-first-prop-new-line": [0],
"react/jsx-indent-props": [0],
"react/jsx-closing-bracket-location": [0],
"react/forbid-prop-types": [0],
"jsx-a11y/href-no-hash": [0],
"import/no-extraneous-dependencies": [0],
"import/extensions": [0],
"no-shadow": [0],
"jsx-a11y/label-has-for": [ 2, {
"components": [ "Label" ],
"required": {
"every": [ "nesting", "id" ]
},
"allowChildren": true
}]
},
"env": {
"es6": true,
"node": true,
"jest/globals": true,
"browser": true
},
"globals": {
"browser": true
},
"parser": "babel-eslint",
"parserOptions": {
"sourceType": "module"
}
}