-
Notifications
You must be signed in to change notification settings - Fork 454
/
.eslintrc
44 lines (44 loc) · 939 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
{
"parser": "babel-eslint",
"extends": ["airbnb", "prettier"],
"plugins": ["babel"],
"globals": {
"describe": true,
"it": true,
"fit": true,
"jasmine": true,
"beforeEach": true,
"beforeAll": true,
"afterAll": true
},
"rules": {
"no-param-reassign": 0,
"no-control-regex": 0,
"import/prefer-default-export": 0,
"generator-star-spacing": 0,
"babel/generator-star-spacing": 0,
"func-names": 0,
"no-confusing-arrow": 0,
"camelcase": 0,
"no-multiple-empty-lines": [
"error",
{ "max": 1, "maxEOF": 0, "maxBOF": 0 }
],
"import/no-unresolved": false,
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": [
"**/*.test.js",
"scripts/proxy-browser-test.js",
"rollup.config*js"
]
}
]
},
"settings": {
"import/resolver": {
"babel-module": {}
}
}
}