forked from splunk/splunk-aws-serverless-apps
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc
More file actions
30 lines (30 loc) · 683 Bytes
/
.eslintrc
File metadata and controls
30 lines (30 loc) · 683 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
{
"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-return-assign": 0,
"no-underscore-dangle": 0,
"no-unused-expressions": 0,
"no-useless-escape": 0,
"prefer-rest-params": 0,
"react/require-extension": 0,
"spaced-comment": 0,
"strict": 0,
"no-else-return": 0,
"object-shorthand": [2, "consistent-as-needed"]
}
}