forked from 10up/brightcove-video-connect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
50 lines (50 loc) · 1.3 KB
/
.eslintrc.js
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
43
44
45
46
47
48
49
50
module.exports = {
extends: [
"@10up/eslint-config"
],
overrides: [
{
files: ["*.js"],
rules: {
"vars-on-top": "off",
"one-var": "off",
"prefer-const": "off",
"object-shorthand": "off",
"jsdoc/require-param-type": "off",
"jsdoc/require-param-description": "off",
"jsdoc/newline-after-description": "off",
"jsdoc/check-types": "off",
"jsdoc/require-returns-check": "off",
"jsdoc/no-undefined-types": "off",
"jsdoc/require-description": "off",
"jsdoc/require-param": "off",
"jsdoc/require-returns": "off",
"jsdoc/check-tag-names": "off",
"jsdoc/check-param-names": "off",
"jsdoc/check-indentation": "off",
"prefer-template": "off",
"prefer-destructuring": "off",
"prefer-rest-params": "off",
"no-undef": "off",
"no-var": "off",
"no-param-reassign": "off",
"no-unused-vars": "off",
"no-restricted-globals": "off",
"no-alert": "off",
"no-multi-assign": "off",
"no-redeclare": "off",
"no-lonely-if": "off",
"no-prototype-builtins": "off",
"no-undef-init": "off",
"no-cond-assign": "off",
"no-empty": "off",
"no-restricted-properties": "off",
"block-scoped-var": "off",
"default-case": "off",
"eqeqeq": "off",
"consistent-return": "off",
"valid-typeof": "off"
}
}
]
};