-
Notifications
You must be signed in to change notification settings - Fork 28
/
.eslintrc
40 lines (40 loc) · 1.01 KB
/
.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
{
"extends": "airbnb-base",
"globals": {
"afterAll": true,
"afterEach": true,
"beforeAll": true,
"beforeEach": true,
"describe": true,
"expect": true,
"fail": true,
"it": true,
"jasmine": true,
"jest": true,
"test": true
},
"rules": {
"newline-per-chained-call": 0,
"no-console": 0,
"no-empty-pattern": 0,
"no-underscore-dangle": 0,
"strict": 0,
"import/prefer-default-export": 0,
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": ["**/*.test.js", "**/*.spec.js", "**/test/support/**/*.js", "**/cli/**/*.js", "scripts/*.js"]
}
],
"valid-jsdoc": ["error", {
"prefer": { "arg": "param", "argument": "param", "class": "constructor", "return": "returns", "virtual": "abstract" },
"preferType": { "boolean": "Boolean", "number": "Number", "object": "Object", "string": "String" },
"requireReturn": false
}]
},
"settings": {
"import/core-modules": [
"aws-sdk"
]
}
}