UNPKG

20.3 kBJSONView Raw
1{
2 "root": true,
3 "reportUnusedDisableDirectives": true,
4 "plugins": [
5 "unicorn",
6 "import"
7 ],
8 "parserOptions": {
9 "sourceType": "module",
10 "ecmaVersion": 2020
11 },
12 "env": {
13 "browser": true,
14 "commonjs": true,
15 "es2020": true,
16 "jest": true,
17 "node": true
18 },
19 "overrides": [
20 {
21 "files": [
22 "**/*worker.js"
23 ],
24 "env": {
25 "worker": true
26 },
27 "rules": {
28 "no-restricted-globals": [
29 2,
30 "addEventListener",
31 "blur",
32 "close",
33 "closed",
34 "confirm",
35 "defaultStatus",
36 "defaultstatus",
37 "error",
38 "event",
39 "external",
40 "find",
41 "focus",
42 "frameElement",
43 "frames",
44 "history",
45 "innerHeight",
46 "innerWidth",
47 "isFinite",
48 "isNaN",
49 "length",
50 "location",
51 "locationbar",
52 "menubar",
53 "moveBy",
54 "moveTo",
55 "name",
56 "onblur",
57 "onerror",
58 "onfocus",
59 "onload",
60 "onresize",
61 "onunload",
62 "open",
63 "opener",
64 "opera",
65 "outerHeight",
66 "outerWidth",
67 "pageXOffset",
68 "pageYOffset",
69 "parent",
70 "print",
71 "removeEventListener",
72 "resizeBy",
73 "resizeTo",
74 "screen",
75 "screenLeft",
76 "screenTop",
77 "screenX",
78 "screenY",
79 "scroll",
80 "scrollbars",
81 "scrollBy",
82 "scrollTo",
83 "scrollX",
84 "scrollY",
85 "status",
86 "statusbar",
87 "stop",
88 "toolbar",
89 "top"
90 ]
91 }
92 }
93 ],
94 "rules": {
95 "accessor-pairs": [
96 2
97 ],
98 "array-bracket-newline": [
99 0
100 ],
101 "array-bracket-spacing": [
102 2,
103 "never"
104 ],
105 "array-callback-return": [
106 0
107 ],
108 "array-element-newline": [
109 0
110 ],
111 "arrow-body-style": [
112 0
113 ],
114 "arrow-parens": [
115 0
116 ],
117 "arrow-spacing": [
118 2,
119 {
120 "before": true,
121 "after": true
122 }
123 ],
124 "block-scoped-var": [
125 2
126 ],
127 "block-spacing": [
128 0
129 ],
130 "brace-style": [
131 2,
132 "1tbs",
133 {
134 "allowSingleLine": true
135 }
136 ],
137 "camelcase": [
138 0
139 ],
140 "capitalized-comments": [
141 0
142 ],
143 "class-methods-use-this": [
144 0
145 ],
146 "comma-dangle": [
147 2,
148 "only-multiline"
149 ],
150 "comma-spacing": [
151 2,
152 {
153 "before": false,
154 "after": true
155 }
156 ],
157 "comma-style": [
158 2,
159 "last"
160 ],
161 "complexity": [
162 0
163 ],
164 "computed-property-spacing": [
165 2,
166 "never"
167 ],
168 "consistent-return": [
169 0
170 ],
171 "consistent-this": [
172 0
173 ],
174 "constructor-super": [
175 2
176 ],
177 "curly": [
178 0
179 ],
180 "default-case": [
181 0
182 ],
183 "default-param-last": [
184 0
185 ],
186 "dot-location": [
187 2,
188 "property"
189 ],
190 "dot-notation": [
191 0
192 ],
193 "eol-last": [
194 2
195 ],
196 "eqeqeq": [
197 2
198 ],
199 "for-direction": [
200 2
201 ],
202 "func-call-spacing": [
203 2,
204 "never"
205 ],
206 "func-name-matching": [
207 2
208 ],
209 "func-names": [
210 0
211 ],
212 "func-style": [
213 0
214 ],
215 "function-call-argument-newline": [
216 0
217 ],
218 "function-paren-newline": [
219 0
220 ],
221 "generator-star-spacing": [
222 0
223 ],
224 "getter-return": [
225 2
226 ],
227 "grouped-accessor-pairs": [
228 2
229 ],
230 "guard-for-in": [
231 0
232 ],
233 "id-blacklist": [
234 0
235 ],
236 "id-denylist": [
237 0
238 ],
239 "id-length": [
240 0
241 ],
242 "id-match": [
243 0
244 ],
245 "implicit-arrow-linebreak": [
246 0
247 ],
248 "import/default": [
249 2
250 ],
251 "import/dynamic-import-chunkname": [
252 0
253 ],
254 "import/export": [
255 2
256 ],
257 "import/exports-last": [
258 0
259 ],
260 "import/extensions": [
261 0
262 ],
263 "import/first": [
264 2
265 ],
266 "import/group-exports": [
267 0
268 ],
269 "import/max-dependencies": [
270 0
271 ],
272 "import/named": [
273 2
274 ],
275 "import/namespace": [
276 0
277 ],
278 "import/newline-after-import": [
279 0
280 ],
281 "import/no-absolute-path": [
282 2
283 ],
284 "import/no-amd": [
285 0
286 ],
287 "import/no-anonymous-default-export": [
288 0
289 ],
290 "import/no-commonjs": [
291 0
292 ],
293 "import/no-cycle": [
294 0
295 ],
296 "import/no-default-export": [
297 0
298 ],
299 "import/no-deprecated": [
300 0
301 ],
302 "import/no-duplicates": [
303 2
304 ],
305 "import/no-dynamic-require": [
306 0
307 ],
308 "import/no-extraneous-dependencies": [
309 2
310 ],
311 "import/no-internal-modules": [
312 0
313 ],
314 "import/no-mutable-exports": [
315 2
316 ],
317 "import/no-named-as-default-member": [
318 0
319 ],
320 "import/no-named-as-default": [
321 2
322 ],
323 "import/no-named-default": [
324 0
325 ],
326 "import/no-named-export": [
327 0
328 ],
329 "import/no-namespace": [
330 0
331 ],
332 "import/no-nodejs-modules": [
333 0
334 ],
335 "import/no-relative-parent-imports": [
336 0
337 ],
338 "import/no-restricted-paths": [
339 0
340 ],
341 "import/no-self-import": [
342 2
343 ],
344 "import/no-unassigned-import": [
345 0
346 ],
347 "import/no-unresolved": [
348 2,
349 {
350 "commonjs": true
351 }
352 ],
353 "import/no-unused-modules": [
354 0
355 ],
356 "import/no-useless-path-segments": [
357 2,
358 {
359 "commonjs": true
360 }
361 ],
362 "import/no-webpack-loader-syntax": [
363 2
364 ],
365 "import/order": [
366 0
367 ],
368 "import/prefer-default-export": [
369 0
370 ],
371 "import/unambiguous": [
372 0
373 ],
374 "indent": [
375 2,
376 2,
377 {
378 "ignoreComments": true,
379 "SwitchCase": 1
380 }
381 ],
382 "init-declarations": [
383 0
384 ],
385 "jsx-quotes": [
386 2,
387 "prefer-double"
388 ],
389 "key-spacing": [
390 2
391 ],
392 "keyword-spacing": [
393 2
394 ],
395 "line-comment-position": [
396 0
397 ],
398 "linebreak-style": [
399 2,
400 "unix"
401 ],
402 "lines-around-comment": [
403 0
404 ],
405 "lines-between-class-members": [
406 0
407 ],
408 "max-classes-per-file": [
409 0
410 ],
411 "max-depth": [
412 0
413 ],
414 "max-len": [
415 0
416 ],
417 "max-lines-per-function": [
418 0
419 ],
420 "max-lines": [
421 0
422 ],
423 "max-nested-callbacks": [
424 0
425 ],
426 "max-params": [
427 0
428 ],
429 "max-statements-per-line": [
430 0
431 ],
432 "max-statements": [
433 0
434 ],
435 "multiline-comment-style": [
436 2,
437 "separate-lines"
438 ],
439 "multiline-ternary": [
440 0
441 ],
442 "new-cap": [
443 0
444 ],
445 "new-parens": [
446 2
447 ],
448 "newline-per-chained-call": [
449 0
450 ],
451 "no-alert": [
452 0
453 ],
454 "no-array-constructor": [
455 2
456 ],
457 "no-async-promise-executor": [
458 0
459 ],
460 "no-await-in-loop": [
461 0
462 ],
463 "no-bitwise": [
464 0
465 ],
466 "no-buffer-constructor": [
467 0
468 ],
469 "no-caller": [
470 2
471 ],
472 "no-case-declarations": [
473 2
474 ],
475 "no-class-assign": [
476 2
477 ],
478 "no-compare-neg-zero": [
479 2
480 ],
481 "no-cond-assign": [
482 2,
483 "except-parens"
484 ],
485 "no-confusing-arrow": [
486 0
487 ],
488 "no-console": [
489 1,
490 {
491 "allow": [
492 "info",
493 "warn",
494 "error"
495 ]
496 }
497 ],
498 "no-const-assign": [
499 2
500 ],
501 "no-constant-condition": [
502 0
503 ],
504 "no-constructor-return": [
505 2
506 ],
507 "no-continue": [
508 0
509 ],
510 "no-control-regex": [
511 0
512 ],
513 "no-debugger": [
514 1
515 ],
516 "no-delete-var": [
517 2
518 ],
519 "no-div-regex": [
520 0
521 ],
522 "no-dupe-args": [
523 2
524 ],
525 "no-dupe-class-members": [
526 2
527 ],
528 "no-dupe-else-if": [
529 2
530 ],
531 "no-dupe-keys": [
532 2
533 ],
534 "no-duplicate-case": [
535 2
536 ],
537 "no-duplicate-imports": [
538 2
539 ],
540 "no-else-return": [
541 0
542 ],
543 "no-empty-character-class": [
544 2
545 ],
546 "no-empty-function": [
547 0
548 ],
549 "no-empty-pattern": [
550 2
551 ],
552 "no-empty": [
553 2,
554 {
555 "allowEmptyCatch": true
556 }
557 ],
558 "no-eq-null": [
559 2
560 ],
561 "no-eval": [
562 2
563 ],
564 "no-ex-assign": [
565 2
566 ],
567 "no-extend-native": [
568 2
569 ],
570 "no-extra-bind": [
571 2
572 ],
573 "no-extra-boolean-cast": [
574 2
575 ],
576 "no-extra-label": [
577 0
578 ],
579 "no-extra-parens": [
580 0
581 ],
582 "no-extra-semi": [
583 2
584 ],
585 "no-fallthrough": [
586 2
587 ],
588 "no-floating-decimal": [
589 0
590 ],
591 "no-func-assign": [
592 2
593 ],
594 "no-global-assign": [
595 2
596 ],
597 "no-implicit-coercion": [
598 0
599 ],
600 "no-implicit-globals": [
601 0
602 ],
603 "no-implied-eval": [
604 2
605 ],
606 "no-import-assign": [
607 2
608 ],
609 "no-inline-comments": [
610 0
611 ],
612 "no-inner-declarations": [
613 2
614 ],
615 "no-invalid-regexp": [
616 2
617 ],
618 "no-invalid-this": [
619 0
620 ],
621 "no-irregular-whitespace": [
622 2
623 ],
624 "no-iterator": [
625 2
626 ],
627 "no-label-var": [
628 2
629 ],
630 "no-labels": [
631 2
632 ],
633 "no-lone-blocks": [
634 2
635 ],
636 "no-lonely-if": [
637 0
638 ],
639 "no-loop-func": [
640 0
641 ],
642 "no-magic-numbers": [
643 0
644 ],
645 "no-misleading-character-class": [
646 2
647 ],
648 "no-mixed-operators": [
649 0
650 ],
651 "no-mixed-spaces-and-tabs": [
652 2
653 ],
654 "no-multi-assign": [
655 0
656 ],
657 "no-multi-spaces": [
658 2,
659 {
660 "ignoreEOLComments": true,
661 "exceptions": {
662 "Property": true,
663 "VariableDeclarator": true
664 }
665 }
666 ],
667 "no-multi-str": [
668 2
669 ],
670 "no-multiple-empty-lines": [
671 2,
672 {
673 "max": 1,
674 "maxEOF": 0,
675 "maxBOF": 0
676 }
677 ],
678 "no-negated-condition": [
679 0
680 ],
681 "no-nested-ternary": [
682 0
683 ],
684 "no-new-func": [
685 2
686 ],
687 "no-new-object": [
688 2
689 ],
690 "no-new-symbol": [
691 2
692 ],
693 "no-new-wrappers": [
694 2
695 ],
696 "no-new": [
697 0
698 ],
699 "no-obj-calls": [
700 2
701 ],
702 "no-octal-escape": [
703 2
704 ],
705 "no-octal": [
706 2
707 ],
708 "no-param-reassign": [
709 0
710 ],
711 "no-plusplus": [
712 0
713 ],
714 "no-promise-executor-return": [
715 0
716 ],
717 "no-proto": [
718 2
719 ],
720 "no-prototype-builtins": [
721 2
722 ],
723 "no-redeclare": [
724 2
725 ],
726 "no-regex-spaces": [
727 2
728 ],
729 "no-restricted-exports": [
730 0
731 ],
732 "no-restricted-globals": [
733 2,
734 "addEventListener",
735 "blur",
736 "close",
737 "closed",
738 "confirm",
739 "defaultStatus",
740 "defaultstatus",
741 "error",
742 "event",
743 "external",
744 "find",
745 "focus",
746 "frameElement",
747 "frames",
748 "history",
749 "innerHeight",
750 "innerWidth",
751 "isFinite",
752 "isNaN",
753 "length",
754 "location",
755 "locationbar",
756 "menubar",
757 "moveBy",
758 "moveTo",
759 "name",
760 "onblur",
761 "onerror",
762 "onfocus",
763 "onload",
764 "onresize",
765 "onunload",
766 "open",
767 "opener",
768 "opera",
769 "outerHeight",
770 "outerWidth",
771 "pageXOffset",
772 "pageYOffset",
773 "parent",
774 "print",
775 "removeEventListener",
776 "resizeBy",
777 "resizeTo",
778 "screen",
779 "screenLeft",
780 "screenTop",
781 "screenX",
782 "screenY",
783 "scroll",
784 "scrollbars",
785 "self",
786 "scrollBy",
787 "scrollTo",
788 "scrollX",
789 "scrollY",
790 "status",
791 "statusbar",
792 "stop",
793 "toolbar",
794 "top"
795 ],
796 "no-restricted-imports": [
797 0
798 ],
799 "no-restricted-properties": [
800 0
801 ],
802 "no-restricted-syntax": [
803 2,
804 "WithStatement",
805 "ForInStatement",
806 "LabeledStatement"
807 ],
808 "no-return-assign": [
809 0
810 ],
811 "no-return-await": [
812 0
813 ],
814 "no-script-url": [
815 2
816 ],
817 "no-self-assign": [
818 2,
819 {
820 "props": true
821 }
822 ],
823 "no-self-compare": [
824 2
825 ],
826 "no-sequences": [
827 2
828 ],
829 "no-setter-return": [
830 2
831 ],
832 "no-shadow-restricted-names": [
833 2
834 ],
835 "no-shadow": [
836 0
837 ],
838 "no-sparse-arrays": [
839 2
840 ],
841 "no-tabs": [
842 2
843 ],
844 "no-template-curly-in-string": [
845 2
846 ],
847 "no-ternary": [
848 0
849 ],
850 "no-this-before-super": [
851 2
852 ],
853 "no-throw-literal": [
854 2
855 ],
856 "no-trailing-spaces": [
857 2
858 ],
859 "no-undef-init": [
860 2
861 ],
862 "no-undef": [
863 2,
864 {
865 "typeof": true
866 }
867 ],
868 "no-undefined": [
869 0
870 ],
871 "no-underscore-dangle": [
872 0
873 ],
874 "no-unexpected-multiline": [
875 2
876 ],
877 "no-unmodified-loop-condition": [
878 2
879 ],
880 "no-unneeded-ternary": [
881 0
882 ],
883 "no-unreachable": [
884 2
885 ],
886 "no-unsafe-finally": [
887 2
888 ],
889 "no-unsafe-negation": [
890 2
891 ],
892 "no-unused-expressions": [
893 2
894 ],
895 "no-unused-labels": [
896 2
897 ],
898 "no-unused-vars": [
899 2,
900 {
901 "args": "all",
902 "argsIgnorePattern": "^_",
903 "varsIgnorePattern": "^_",
904 "caughtErrorsIgnorePattern": "^_",
905 "ignoreRestSiblings": false
906 }
907 ],
908 "no-use-before-define": [
909 2,
910 "nofunc"
911 ],
912 "no-useless-backreference": [
913 0
914 ],
915 "no-useless-call": [
916 2
917 ],
918 "no-useless-catch": [
919 2
920 ],
921 "no-useless-computed-key": [
922 2
923 ],
924 "no-useless-concat": [
925 2
926 ],
927 "no-useless-constructor": [
928 2
929 ],
930 "no-useless-escape": [
931 2
932 ],
933 "no-useless-rename": [
934 2
935 ],
936 "no-useless-return": [
937 0
938 ],
939 "no-var": [
940 2
941 ],
942 "no-void": [
943 2
944 ],
945 "no-warning-comments": [
946 0
947 ],
948 "no-whitespace-before-property": [
949 2
950 ],
951 "no-with": [
952 2
953 ],
954 "nonblock-statement-body-position": [
955 2
956 ],
957 "object-curly-newline": [
958 0
959 ],
960 "object-curly-spacing": [
961 2,
962 "never"
963 ],
964 "object-property-newline": [
965 0
966 ],
967 "object-shorthand": [
968 2,
969 "always"
970 ],
971 "one-var-declaration-per-line": [
972 0
973 ],
974 "one-var": [
975 0
976 ],
977 "operator-assignment": [
978 2,
979 "always"
980 ],
981 "operator-linebreak": [
982 2,
983 "after"
984 ],
985 "padded-blocks": [
986 2,
987 "never"
988 ],
989 "padding-line-between-statements": [
990 0
991 ],
992 "prefer-arrow-callback": [
993 2,
994 {
995 "allowNamedFunctions": true,
996 "allowUnboundThis": true
997 }
998 ],
999 "prefer-const": [
1000 2,
1001 {
1002 "destructuring": "all"
1003 }
1004 ],
1005 "prefer-destructuring": [
1006 0
1007 ],
1008 "prefer-exponentiation-operator": [
1009 2
1010 ],
1011 "prefer-named-capture-group": [
1012 0
1013 ],
1014 "prefer-numeric-literals": [
1015 2
1016 ],
1017 "prefer-object-spread": [
1018 0
1019 ],
1020 "prefer-promise-reject-errors": [
1021 2,
1022 {
1023 "allowEmptyReject": false
1024 }
1025 ],
1026 "prefer-regex-literals": [
1027 2
1028 ],
1029 "prefer-rest-params": [
1030 2
1031 ],
1032 "prefer-spread": [
1033 2
1034 ],
1035 "prefer-template": [
1036 2
1037 ],
1038 "quote-props": [
1039 0
1040 ],
1041 "quotes": [
1042 2,
1043 "double",
1044 {
1045 "avoidEscape": true,
1046 "allowTemplateLiterals": true
1047 }
1048 ],
1049 "radix": [
1050 2,
1051 "as-needed"
1052 ],
1053 "require-atomic-updates": [
1054 0
1055 ],
1056 "require-await": [
1057 0
1058 ],
1059 "require-unicode-regexp": [
1060 0
1061 ],
1062 "require-yield": [
1063 2
1064 ],
1065 "rest-spread-spacing": [
1066 2,
1067 "never"
1068 ],
1069 "semi-spacing": [
1070 2,
1071 {
1072 "before": false,
1073 "after": true
1074 }
1075 ],
1076 "semi-style": [
1077 2,
1078 "last"
1079 ],
1080 "semi": [
1081 2,
1082 "always"
1083 ],
1084 "sort-imports": [
1085 0
1086 ],
1087 "sort-keys": [
1088 0
1089 ],
1090 "sort-vars": [
1091 0
1092 ],
1093 "space-before-blocks": [
1094 2,
1095 "always"
1096 ],
1097 "space-before-function-paren": [
1098 2,
1099 {
1100 "anonymous": "never",
1101 "named": "never",
1102 "asyncArrow": "always"
1103 }
1104 ],
1105 "space-in-parens": [
1106 2,
1107 "never"
1108 ],
1109 "space-infix-ops": [
1110 2
1111 ],
1112 "space-unary-ops": [
1113 2
1114 ],
1115 "spaced-comment": [
1116 2,
1117 "always",
1118 {
1119 "markers": [
1120 "!"
1121 ]
1122 }
1123 ],
1124 "strict": [
1125 0
1126 ],
1127 "switch-colon-spacing": [
1128 2
1129 ],
1130 "symbol-description": [
1131 2
1132 ],
1133 "template-curly-spacing": [
1134 2,
1135 "never"
1136 ],
1137 "template-tag-spacing": [
1138 2,
1139 "never"
1140 ],
1141 "unicode-bom": [
1142 2,
1143 "never"
1144 ],
1145 "unicorn/better-regex": [
1146 0
1147 ],
1148 "unicorn/catch-error-name": [
1149 0
1150 ],
1151 "unicorn/consistent-function-scoping": [
1152 2
1153 ],
1154 "unicorn/custom-error-definition": [
1155 0
1156 ],
1157 "unicorn/error-message": [
1158 0
1159 ],
1160 "unicorn/escape-case": [
1161 0
1162 ],
1163 "unicorn/expiring-todo-comments": [
1164 0
1165 ],
1166 "unicorn/explicit-length-check": [
1167 0
1168 ],
1169 "unicorn/filename-case": [
1170 0
1171 ],
1172 "unicorn/import-index": [
1173 0
1174 ],
1175 "unicorn/new-for-builtins": [
1176 2
1177 ],
1178 "unicorn/no-abusive-eslint-disable": [
1179 0
1180 ],
1181 "unicorn/no-array-instanceof": [
1182 0
1183 ],
1184 "unicorn/no-console-spaces": [
1185 0
1186 ],
1187 "unicorn/no-fn-reference-in-iterator": [
1188 0
1189 ],
1190 "unicorn/no-for-loop": [
1191 0
1192 ],
1193 "unicorn/no-hex-escape": [
1194 0
1195 ],
1196 "unicorn/no-keyword-prefix": [
1197 0
1198 ],
1199 "unicorn/no-nested-ternary": [
1200 0
1201 ],
1202 "unicorn/no-new-buffer": [
1203 0
1204 ],
1205 "unicorn/no-null": [
1206 0
1207 ],
1208 "unicorn/no-object-as-default-parameter": [
1209 2
1210 ],
1211 "unicorn/no-process-exit": [
1212 0
1213 ],
1214 "unicorn/no-reduce": [
1215 0
1216 ],
1217 "unicorn/no-unreadable-array-destructuring": [
1218 0
1219 ],
1220 "unicorn/no-unsafe-regex": [
1221 0
1222 ],
1223 "unicorn/no-unused-properties": [
1224 2
1225 ],
1226 "unicorn/no-useless-undefined": [
1227 0
1228 ],
1229 "unicorn/no-zero-fractions": [
1230 2
1231 ],
1232 "unicorn/number-literal-case": [
1233 0
1234 ],
1235 "unicorn/prefer-add-event-listener": [
1236 2
1237 ],
1238 "unicorn/prefer-array-find": [
1239 2
1240 ],
1241 "unicorn/prefer-dataset": [
1242 2
1243 ],
1244 "unicorn/prefer-event-key": [
1245 2
1246 ],
1247 "unicorn/prefer-flat-map": [
1248 2
1249 ],
1250 "unicorn/prefer-includes": [
1251 2
1252 ],
1253 "unicorn/prefer-modern-dom-apis": [
1254 0
1255 ],
1256 "unicorn/prefer-negative-index": [
1257 2
1258 ],
1259 "unicorn/prefer-node-append": [
1260 0
1261 ],
1262 "unicorn/prefer-node-remove": [
1263 0
1264 ],
1265 "unicorn/prefer-number-properties": [
1266 0
1267 ],
1268 "unicorn/prefer-optional-catch-binding": [
1269 2
1270 ],
1271 "unicorn/prefer-query-selector": [
1272 0
1273 ],
1274 "unicorn/prefer-reflect-apply": [
1275 0
1276 ],
1277 "unicorn/prefer-replace-all": [
1278 0
1279 ],
1280 "unicorn/prefer-set-has": [
1281 0
1282 ],
1283 "unicorn/prefer-spread": [
1284 0
1285 ],
1286 "unicorn/prefer-starts-ends-with": [
1287 2
1288 ],
1289 "unicorn/prefer-string-slice": [
1290 0
1291 ],
1292 "unicorn/prefer-text-content": [
1293 2
1294 ],
1295 "unicorn/prefer-trim-start-end": [
1296 2
1297 ],
1298 "unicorn/prefer-type-error": [
1299 0
1300 ],
1301 "unicorn/prevent-abbreviations": [
1302 0
1303 ],
1304 "unicorn/string-content": [
1305 0
1306 ],
1307 "unicorn/throw-new-error": [
1308 2
1309 ],
1310 "use-isnan": [
1311 2
1312 ],
1313 "valid-typeof": [
1314 2,
1315 {
1316 "requireStringLiterals": true
1317 }
1318 ],
1319 "vars-on-top": [
1320 0
1321 ],
1322 "wrap-iife": [
1323 2,
1324 "inside"
1325 ],
1326 "wrap-regex": [
1327 0
1328 ],
1329 "yield-star-spacing": [
1330 2,
1331 "after"
1332 ],
1333 "yoda": [
1334 2,
1335 "never"
1336 ]
1337 }
1338}
\No newline at end of file