forked from jwplayer/jwplayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
29 lines (29 loc) · 795 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
{
"env": {
"browser": true,
"amd": true
},
"globals": {
"define": true
},
"parserOptions": {
"ecmaVersion": 5,
"sourceType": "module"
},
"extends": "jwplayer-base",
"rules": {
"no-var": 0,
"indent": ["error", 4, { "SwitchCase": 1 }],
"no-underscore-dangle": ["error", { "allowAfterThis": true }],
"prefer-spread": "off",
"vars-on-top": "off",
"max-len": ["error", 120, { "ignoreComments": true }],
"object-shorthand": 0,
"no-use-before-define": 0,
"func-names": 0,
"import/no-extraneous-dependencies": ["error", { "devDependencies": true }],
"no-console": 0,
"prefer-rest-params": 0,
"prefer-arrow-callback": 0
}
}