-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
35 lines (35 loc) · 854 Bytes
/
index.js
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
module.exports = {
extends: ["eslint-config-airbnb"].map(require.resolve),
env: {
"browser": "true",
"node": "true"
},
globals: {
"describe": "true",
"xdescribe": "true",
"context": "true",
"xcontext": "true",
"it": "true",
"xit": "true",
"before": "true",
"beforeEach": "true",
"after": "true",
"afterEach": "true",
"exit": "true"
},
rules: {
"import/no-extraneous-dependencies": 1,
"eqeqeq": 1,
"max-len": 0,
"global-require": 1,
"guard-for-in": 1,
"no-plusplus": 0,
"no-param-reassign": 0,
"no-prototype-builtins": 0,
"no-restricted-syntax": 0,
"no-underscore-dangle": 0,
"jsx-a11y/label-has-for": 0,
"react/forbid-prop-types": [1, { "type": ["object"] }],
"react/jsx-filename-extension": [0, { "extensions": [".js", ".jsx"] }],
},
}