forked from aws-samples/aws-serverless-workshops
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
32 lines (32 loc) · 744 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
{
"parser": "babel-eslint",
"extends": "airbnb",
"env": {
"mocha": true
},
"plugins": [
"babel"
],
"rules": {
"consistent-return": 0,
"global-require": 0,
"import/imports-first": 0,
"import/no-extraneous-dependencies": 0,
"import/no-unresolved": 0,
"indent": [2, 4, {"SwitchCase": 1}],
"max-len": [2, 250],
"no-console": 0,
"no-param-reassign": ["error", { "props": true }],
"no-return-assign": 0,
"no-underscore-dangle": 0,
"no-unused-expressions": 0,
"no-useless-escape": 0,
"object-shorthand": 0,
"prefer-rest-params": 0,
"react/require-extension": 0,
"spaced-comment": 0,
"strict": 0,
"no-else-return": 0,
"no-use-before-define": 0
}
}