-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
30 lines (30 loc) · 915 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
{
"parser": "babel-eslint",
"extends": ["airbnb", "prettier"],
"globals": {
"__LIBRARY__": true,
"__VERSION__": true,
"cancelAnimationFrame": true,
"document": true,
"Image": true,
"lowww": true,
"requestAnimationFrame": true,
"window": true
},
"rules": {
"arrow-body-style": [0],
"class-methods-use-this": [0],
"global-require": [0],
"guard-for-in": [0],
"import/prefer-default-export": [0],
"indent": [2, 4],
"no-bitwise": [0],
"no-console": [0],
"no-param-reassign": [0],
"no-plusplus": [0],
"no-restricted-syntax": [2, 'DebuggerStatement'],
"no-return-assign": [0],
"no-underscore-dangle": [0],
"prefer-destructuring": ["error", { "array": false, "object": true }, { "enforceForRenamedProperties": false }]
}
}