forked from jsmapr1/simplifying-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc
More file actions
34 lines (34 loc) · 759 Bytes
/
.eslintrc
File metadata and controls
34 lines (34 loc) · 759 Bytes
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
{
"env": {
"browser": true
},
"parser": "babel-eslint",
"extends": "airbnb",
"globals": {
"document": true,
"afterEach": true,
"beforeEach": true,
"jest": true,
"it": true,
"describe": true,
"expect": true,
"fetch": true,
"google": true
},
"rules": {
"arrow-parens": ["error", "as-needed"],
"arrow-body-style": 0,
"class-methods-use-this": 0,
"import/extensions": 0,
"import/no-unresolved": 0,
"import/prefer-default-export": 0,
"linebreak-style": 0,
"no-plusplus": 0,
"no-shadow": 0,
"no-restricted-syntax": 0,
"no-underscore-dangle": 0,
"no-unused-expressions": 0,
"react/jsx-filename-extension": 0,
"react/prop-types": 0,
}
}