forked from linode/linode-api-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
42 lines (42 loc) · 1000 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
{
"extends": "airbnb",
"plugins": [
"babel"
],
"env": {
"browser": true,
},
"parser": "babel-eslint",
"rules": {
"babel/generator-star-spacing": 2,
"babel/new-cap": 0,
"babel/array-bracket-spacing": 2,
"babel/object-shorthand": 0,
"babel/flow-object-type": 2,
"babel/no-await-in-loop": 0,
"babel/arrow-parens": 0,
"arrow-body-style": 0,
"func-names": 0,
"import/no-unresolved": 0,
"no-underscore-dangle": 0,
"no-unused-expressions": 0,
"no-confusing-arrow": 0,
"prefer-arrow-callback": 0,
"array-callback-return": 0,
"consistent-return": 0,
"react/no-multi-comp": 0,
"react/no-did-mount-set-state": 0,
"react/prefer-stateless-function": 0,
"import/no-duplicates": 0,
"no-duplicate-imports": 0,
"new-cap": 0,
"no-shadow": 0,
"object-shorthand": 0,
"radix": 0,
"dot-notation": [
"error", {
"allowPattern": "^(default|public|private|return)$"
}
]
}
}