forked from fippo/rtcstats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
38 lines (35 loc) · 804 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
{
"rules": {
"no-underscore-dangle": 0,
"no-eq-null": 0,
"vars-on-top": 0,
"no-console": 0,
"no-alert": 0,
"spaced-comment": 0,
"valid-jsdoc": 0,
"prefer-arrow-callback": 0,
"prefer-rest-params": 0,
"space-before-function-paren": 0,
"no-var": 0,
"strict": 0,
"func-names": 0,
"no-plusplus": 0,
"prefer-template": 0,
"object-shorthand": 0,
"no-undef": 0,
"new-cap": 0,
"no-param-reassign": 0,
"consistent-this": 0,
"no-warning-comments": 0,
"comma-dangle": ["error", {
"arrays": "only-multiline",
"objects": "only-multiline",
"imports": "only-multiline",
"exports": "only-multiline",
"functions": "never",
}],
},
"plugins": [
"require-path-exists"
]
}