forked from davidjbradshaw/iframe-resizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
58 lines (58 loc) · 1.6 KB
/
.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"extends": ["auto"],
"plugins": ["ie11"],
"env": {
"amd": true,
"browser": true,
"jasmine": true
},
"globals": {
"location": true
},
"parserOptions": { "ecmaVersion": 2015 },
"rules": {
"func-names": 0,
"global-require": 0,
"no-param-reassign": 0,
"no-plusplus": 0,
"no-use-before-define": 0,
"no-shadow": 0,
"no-var": 0,
"object-shorthand": 0,
"one-var": 0,
"prefer-arrow-callback": 0,
"prefer-destructuring": 0,
"prefer-object-spread": 0,
"prefer-rest-params": 0,
"prefer-template": 0,
"vars-on-top": 0,
"yoda": 0,
"ie11/no-collection-args": ["error"],
"ie11/no-for-in-const": ["error"],
"ie11/no-loop-func": ["warn"],
"ie11/no-weak-collections": ["error"],
"import/no-amd": 0,
"lodash/prefer-noop": 0,
"lodash-fp/prefer-constant": 0,
"pii/no-email": 0,
"switch-case/no-case-curly": 0,
"unicorn/consistent-function-scoping": 0,
"unicorn/filename-case": 0,
"unicorn/no-array-callback-reference": 0,
"unicorn/no-array-method-this-argument": 0,
"unicorn/no-this-assignment": 0,
"unicorn/prefer-date-now": 0,
"unicorn/prefer-dom-node-append": 0,
"unicorn/prefer-dom-node-remove": 0,
"unicorn/prefer-module": 0,
"unicorn/prefer-node-append": 0,
"unicorn/prefer-node-protocol": 0,
"unicorn/prefer-node-remove": 0,
"unicorn/prefer-query-selector": 0,
"unicorn/prefer-string-slice": 0,
"unicorn/prefer-top-level-await": 0,
"unicorn/prefer-number-properties": 0,
"unicorn/prevent-abbreviations": 0,
"unicorn/switch-case-braces": 0
}
}