-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathshorturl.json
2543 lines (2543 loc) · 268 KB
/
shorturl.json
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"http://jscs.info/rule/disallowanonymousfunctions": "https://goo.gl/nY6eMG",
"http://jscs.info/rule/disallowarraydestructuringreturn": "https://goo.gl/dDyTrh",
"http://jscs.info/rule/disallowarrowfunctions": "https://goo.gl/ix8L4E",
"http://jscs.info/rule/disallowcapitalizedcomments": "https://goo.gl/g2UxNW",
"http://jscs.info/rule/disallowcommabeforelinebreak": "https://goo.gl/2A6qyc",
"http://jscs.info/rule/disallowcurlybraces": "https://goo.gl/V4RFQ1",
"http://jscs.info/rule/disallowdanglingunderscores": "https://goo.gl/UYPdBR",
"http://jscs.info/rule/disallowemptyblocks": "https://goo.gl/Utm6FH",
"http://jscs.info/rule/disallowfunctiondeclarations": "https://goo.gl/syB3zA",
"http://jscs.info/rule/disallowidenticaldestructuringnames": "https://goo.gl/QLFqmF",
"http://jscs.info/rule/disallowidentifiernames": "https://goo.gl/QXm7Yu",
"http://jscs.info/rule/disallowimplicittypeconversion": "https://goo.gl/xEW2pK",
"http://jscs.info/rule/disallowkeywords": "https://goo.gl/gNQXEQ",
"http://jscs.info/rule/disallowkeywordsincomments": "https://goo.gl/Jj6bqT",
"http://jscs.info/rule/disallowkeywordsonnewline": "https://goo.gl/K1a5S6",
"http://jscs.info/rule/disallowmixedspacesandtabs": "https://goo.gl/6kyJhK",
"http://jscs.info/rule/disallowmultilineternary": "https://goo.gl/oUv77T",
"http://jscs.info/rule/disallowmultiplelinebreaks": "https://goo.gl/fYqNWa",
"http://jscs.info/rule/disallowmultiplelinestrings": "https://goo.gl/LEVnyH",
"http://jscs.info/rule/disallowmultiplespaces": "https://goo.gl/C9yCA8",
"http://jscs.info/rule/disallowmultiplevardecl": "https://goo.gl/m4FDkN",
"http://jscs.info/rule/disallownamedunassignedfunctions": "https://goo.gl/9uwzFN",
"http://jscs.info/rule/disallownestedternaries": "https://goo.gl/nVvSpK",
"http://jscs.info/rule/disallownewlinebeforeblockstatements": "https://goo.gl/uwaHiL",
"http://jscs.info/rule/disallownodetypes": "https://goo.gl/YCWAu6",
"http://jscs.info/rule/disallownotoperatorsinconditionals": "https://goo.gl/XnQqrs",
"http://jscs.info/rule/disallowobjectkeysonnewline": "https://goo.gl/cVE4bx",
"http://jscs.info/rule/disallowoperatorbeforelinebreak": "https://goo.gl/wiw6CR",
"http://jscs.info/rule/disallowpaddingnewlinesafterblocks": "https://goo.gl/snHwoX",
"http://jscs.info/rule/disallowpaddingnewlinesafterusestrict": "https://goo.gl/dxKtD1",
"http://jscs.info/rule/disallowpaddingnewlinesbeforeexport": "https://goo.gl/SB7zna",
"http://jscs.info/rule/disallowpaddingnewlinesbeforekeywords": "https://goo.gl/sUpGkZ",
"http://jscs.info/rule/disallowpaddingnewlinesbeforelinecomments": "https://goo.gl/jTLb4L",
"http://jscs.info/rule/disallowpaddingnewlinesinblocks": "https://goo.gl/Y3UBGk",
"http://jscs.info/rule/disallowpaddingnewlinesinobjects": "https://goo.gl/KYa8R3",
"http://jscs.info/rule/disallowparenthesesaroundarrowparam": "https://goo.gl/Az3SHr",
"http://jscs.info/rule/disallowquotedkeysinobjects": "https://goo.gl/a66TyC",
"http://jscs.info/rule/disallowsemicolons": "https://goo.gl/bcKBzv",
"http://jscs.info/rule/disallowshorthandarrowfunctions": "https://goo.gl/H8gvg3",
"http://jscs.info/rule/disallowspaceafterbinaryoperators": "https://goo.gl/rFouCF",
"http://jscs.info/rule/disallowspaceaftercomma": "https://goo.gl/KAmT2g",
"http://jscs.info/rule/disallowspaceafterkeywords": "https://goo.gl/n1N9Pu",
"http://jscs.info/rule/disallowspaceafterlinecomment": "https://goo.gl/v4eVpW",
"http://jscs.info/rule/disallowspaceafterobjectkeys": "https://goo.gl/pCxVba",
"http://jscs.info/rule/disallowspaceafterprefixunaryoperators": "https://goo.gl/zfG2EE",
"http://jscs.info/rule/disallowspacebeforebinaryoperators": "https://goo.gl/GwKc8j",
"http://jscs.info/rule/disallowspacebeforeblockstatements": "https://goo.gl/6yNcgm",
"http://jscs.info/rule/disallowspacebeforecomma": "https://goo.gl/VHH5nX",
"http://jscs.info/rule/disallowspacebeforekeywords": "https://goo.gl/tMNeCD",
"http://jscs.info/rule/disallowspacebeforeobjectvalues": "https://goo.gl/vhh4mF",
"http://jscs.info/rule/disallowspacebeforepostfixunaryoperators": "https://goo.gl/efYJFe",
"http://jscs.info/rule/disallowspacebeforesemicolon": "https://goo.gl/UqKok4",
"http://jscs.info/rule/disallowspacebetweenarguments": "https://goo.gl/JQRHAR",
"http://jscs.info/rule/disallowspacesinanonymousfunctionexpression": "https://goo.gl/y2Eeqe",
"http://jscs.info/rule/disallowspacesincallexpression": "https://goo.gl/UA4pn9",
"http://jscs.info/rule/disallowspacesinconditionalexpression": "https://goo.gl/7RZy42",
"http://jscs.info/rule/disallowspacesinforstatement": "https://goo.gl/5W519o",
"http://jscs.info/rule/disallowspacesinfunction": "https://goo.gl/g5Kmjk",
"http://jscs.info/rule/disallowspacesinfunctiondeclaration": "https://goo.gl/dfEUkL",
"http://jscs.info/rule/disallowspacesinfunctionexpression": "https://goo.gl/8w9Njz",
"http://jscs.info/rule/disallowspacesingenerator": "https://goo.gl/YP5cqr",
"http://jscs.info/rule/disallowspacesinnamedfunctionexpression": "https://goo.gl/JSTzCT",
"http://jscs.info/rule/disallowspacesinsidearraybrackets": "https://goo.gl/AgTgEg",
"http://jscs.info/rule/disallowspacesinsidearraybrackets.html": "https://goo.gl/uBygJj",
"http://jscs.info/rule/disallowspacesinsidebrackets": "https://goo.gl/QSkrCJ",
"http://jscs.info/rule/disallowspacesinsidebrackets.html": "https://goo.gl/EKryrR",
"http://jscs.info/rule/disallowspacesinsideimportedobjectbraces": "https://goo.gl/9CKfuU",
"http://jscs.info/rule/disallowspacesinsideobjectbrackets": "https://goo.gl/Xqj46W",
"http://jscs.info/rule/disallowspacesinsideparentheses": "https://goo.gl/xWtMxX",
"http://jscs.info/rule/disallowspacesinsideparenthesizedexpression": "https://goo.gl/xe8qJe",
"http://jscs.info/rule/disallowspacesinsidetemplatestringplaceholders": "https://goo.gl/BzAhFM",
"http://jscs.info/rule/disallowtabs": "https://goo.gl/V2hA3t",
"http://jscs.info/rule/disallowtrailingcomma": "https://goo.gl/X7JCXn",
"http://jscs.info/rule/disallowtrailingwhitespace": "https://goo.gl/WsxhfH",
"http://jscs.info/rule/disallowunusedparams": "https://goo.gl/h3pxCH",
"http://jscs.info/rule/disallowunusedvariables": "https://goo.gl/ESgjTQ",
"http://jscs.info/rule/disallowvar": "https://goo.gl/87FfXE",
"http://jscs.info/rule/disallowyodaconditions": "https://goo.gl/gsxLj1",
"http://jscs.info/rule/jsdoc": "https://goo.gl/6WUnJe",
"http://jscs.info/rule/maximumlinelength": "https://goo.gl/VTTaqc",
"http://jscs.info/rule/maximumnumberoflines": "https://goo.gl/GNX5HF",
"http://jscs.info/rule/requirealignedmultilineparams": "https://goo.gl/ZXzvM4",
"http://jscs.info/rule/requirealignedobjectvalues": "https://goo.gl/984kLz",
"http://jscs.info/rule/requireanonymousfunctions": "https://goo.gl/j3TWZ3",
"http://jscs.info/rule/requirearraydestructuring": "https://goo.gl/aZaD5X",
"http://jscs.info/rule/requirearrowfunctions": "https://goo.gl/UHxety",
"http://jscs.info/rule/requireblocksonnewline": "https://goo.gl/rEt2a9",
"http://jscs.info/rule/requirecamelcaseoruppercaseidentifiers": "https://goo.gl/iBHNr6",
"http://jscs.info/rule/requirecapitalizedcomments": "https://goo.gl/sGoGHK",
"http://jscs.info/rule/requirecapitalizedconstructors": "https://goo.gl/b8bnN6",
"http://jscs.info/rule/requirecapitalizedconstructorsnew": "https://goo.gl/ACHVJc",
"http://jscs.info/rule/requirecommabeforelinebreak": "https://goo.gl/GBxFYH",
"http://jscs.info/rule/requirecurlybraces": "https://goo.gl/R5xT6s",
"http://jscs.info/rule/requiredollarbeforejqueryassignment": "https://goo.gl/9TzNwa",
"http://jscs.info/rule/requiredotnotation": "https://goo.gl/4t6FeB",
"http://jscs.info/rule/requireearlyreturn": "https://goo.gl/9kZ6Bq",
"http://jscs.info/rule/requireenhancedobjectliterals": "https://goo.gl/b92yPe",
"http://jscs.info/rule/requirefunctiondeclarations": "https://goo.gl/hhUYBN",
"http://jscs.info/rule/requireimportalphabetized": "https://goo.gl/rzhVCp",
"http://jscs.info/rule/requireimportsalphabetized": "https://goo.gl/fChWAk",
"http://jscs.info/rule/requirekeywordsonnewline": "https://goo.gl/Ny4pjm",
"http://jscs.info/rule/requirelinebreakaftervariableassignment": "https://goo.gl/7GdJpu",
"http://jscs.info/rule/requirelinefeedatfileend": "https://goo.gl/3FTnJv",
"http://jscs.info/rule/requirematchingfunctionname": "https://goo.gl/AsM6iZ",
"http://jscs.info/rule/requiremultilineternary": "https://goo.gl/4ZvHTK",
"http://jscs.info/rule/requiremultiplevardecl": "https://goo.gl/Z35DcN",
"http://jscs.info/rule/requirenamedunassignedfunctions": "https://goo.gl/BkjVZe",
"http://jscs.info/rule/requirenewlinebeforeblockstatements": "https://goo.gl/B6JcWk",
"http://jscs.info/rule/requirenewlinebeforesinglestatementsinif": "https://goo.gl/R6Co4v",
"http://jscs.info/rule/requirenumericliterals": "https://goo.gl/1bqqJ8",
"http://jscs.info/rule/requireobjectdestructuring": "https://goo.gl/U6e9Hm",
"http://jscs.info/rule/requireobjectkeysonnewline": "https://goo.gl/KonurC",
"http://jscs.info/rule/requireoperatorbeforelinebreak": "https://goo.gl/2Tx5h2",
"http://jscs.info/rule/requirepaddingnewlineaftervariabledeclaration": "https://goo.gl/WkLpmM",
"http://jscs.info/rule/requirepaddingnewlinesafterblocks": "https://goo.gl/mV9cKb",
"http://jscs.info/rule/requirepaddingnewlinesafterusestrict": "https://goo.gl/KXQdGC",
"http://jscs.info/rule/requirepaddingnewlinesbeforeexport": "https://goo.gl/ovz2cG",
"http://jscs.info/rule/requirepaddingnewlinesbeforekeywords": "https://goo.gl/Nuy6LE",
"http://jscs.info/rule/requirepaddingnewlinesbeforelinecomments": "https://goo.gl/YoxHLv",
"http://jscs.info/rule/requirepaddingnewlinesinblocks": "https://goo.gl/sBu5sK",
"http://jscs.info/rule/requirepaddingnewlinesinobjects": "https://goo.gl/ySWCnM",
"http://jscs.info/rule/requireparenthesesaroundarrowparam": "https://goo.gl/o2kCVB",
"http://jscs.info/rule/requireparenthesesaroundiife": "https://goo.gl/4LEqdd",
"http://jscs.info/rule/requirequotedkeysinobjects": "https://goo.gl/85bwi3",
"http://jscs.info/rule/requiresemicolons": "https://goo.gl/M7JUpN",
"http://jscs.info/rule/requireshorthandarrowfunctions": "https://goo.gl/d3e1ca",
"http://jscs.info/rule/requirespaceafterbinaryoperators": "https://goo.gl/2DySLc",
"http://jscs.info/rule/requirespaceaftercomma": "https://goo.gl/UKdshM",
"http://jscs.info/rule/requirespaceafterkeywords": "https://goo.gl/jF2Tc8",
"http://jscs.info/rule/requirespaceafterlinecomment": "https://goo.gl/wuM3MG",
"http://jscs.info/rule/requirespaceafterobjectkeys": "https://goo.gl/Mj7Tpz",
"http://jscs.info/rule/requirespaceafterprefixunaryoperators": "https://goo.gl/dwivoq",
"http://jscs.info/rule/requirespacebeforebinaryoperators": "https://goo.gl/rDbmjp",
"http://jscs.info/rule/requirespacebeforeblockstatements": "https://goo.gl/vyS44W",
"http://jscs.info/rule/requirespacebeforecomma": "https://goo.gl/jhSQqF",
"http://jscs.info/rule/requirespacebeforedestructuredvalues": "https://goo.gl/hqgGkj",
"http://jscs.info/rule/requirespacebeforekeywords": "https://goo.gl/1PyYXH",
"http://jscs.info/rule/requirespacebeforeobjectvalues": "https://goo.gl/G6sUPm",
"http://jscs.info/rule/requirespacebeforepostfixunaryoperators": "https://goo.gl/qwGkc2",
"http://jscs.info/rule/requirespacebetweenarguments": "https://goo.gl/wUvKjp",
"http://jscs.info/rule/requirespacesinanonymousfunctionexpression": "https://goo.gl/9PxSnM",
"http://jscs.info/rule/requirespacesincallexpression": "https://goo.gl/NiYc8w",
"http://jscs.info/rule/requirespacesinconditionalexpression": "https://goo.gl/8vPdkM",
"http://jscs.info/rule/requirespacesinforstatement": "https://goo.gl/G729JH",
"http://jscs.info/rule/requirespacesinfunction": "https://goo.gl/ou4vNB",
"http://jscs.info/rule/requirespacesinfunctiondeclaration": "https://goo.gl/2ov5Sj",
"http://jscs.info/rule/requirespacesinfunctionexpression": "https://goo.gl/NVnW6E",
"http://jscs.info/rule/requirespacesingenerator": "https://goo.gl/AduXcX",
"http://jscs.info/rule/requirespacesinnamedfunctionexpression": "https://goo.gl/4bxLnD",
"http://jscs.info/rule/requirespacesinsidearraybrackets": "https://goo.gl/k2GdSC",
"http://jscs.info/rule/requirespacesinsidearraybrackets.html": "https://goo.gl/nhvVZs",
"http://jscs.info/rule/requirespacesinsidebrackets": "https://goo.gl/1f6L2v",
"http://jscs.info/rule/requirespacesinsidebrackets.html": "https://goo.gl/XoD5c6",
"http://jscs.info/rule/requirespacesinsideimportedobjectbraces": "https://goo.gl/Znjb87",
"http://jscs.info/rule/requirespacesinsideobjectbrackets": "https://goo.gl/pZBaVn",
"http://jscs.info/rule/requirespacesinsideparentheses": "https://goo.gl/e7yxoJ",
"http://jscs.info/rule/requirespacesinsideparenthesizedexpression": "https://goo.gl/3xnnrD",
"http://jscs.info/rule/requirespread": "https://goo.gl/7aygKQ",
"http://jscs.info/rule/requiretemplatestrings": "https://goo.gl/Ak3SXg",
"http://jscs.info/rule/requiretrailingcomma": "https://goo.gl/r4zvor",
"http://jscs.info/rule/requireusestrict": "https://goo.gl/Kd7H8V",
"http://jscs.info/rule/requirevardeclfirst": "https://goo.gl/zgE3Qg",
"http://jscs.info/rule/requireyodaconditions": "https://goo.gl/A6Vfj6",
"http://jscs.info/rule/safecontextkeyword": "https://goo.gl/gPK4xK",
"http://jscs.info/rule/validatealignedfunctionparameters": "https://goo.gl/UoA1oj",
"http://jscs.info/rule/validatecommentposition": "https://goo.gl/haQydE",
"http://jscs.info/rule/validateindentation": "https://goo.gl/ism97B",
"http://jscs.info/rule/validatelinebreaks": "https://goo.gl/BENC63",
"http://jscs.info/rule/validatenewlineafterarrayelements": "https://goo.gl/oGo6Sm",
"http://jscs.info/rule/validateorderinobjectkeys": "https://goo.gl/awRGmF",
"http://jscs.info/rule/validateparameterseparator": "https://goo.gl/fsC3cQ",
"http://jscs.info/rule/validatequotemarks": "https://goo.gl/ANKpFh",
"https://cn.eslint.org/docs/rules/accessor-pairs": "https://goo.gl/zNSKkQ",
"https://cn.eslint.org/docs/rules/array-bracket-newline": "https://goo.gl/W36GJw",
"https://cn.eslint.org/docs/rules/array-bracket-spacing": "https://goo.gl/224A3t",
"https://cn.eslint.org/docs/rules/array-callback-return": "https://goo.gl/TTc3qM",
"https://cn.eslint.org/docs/rules/array-element-newline": "https://goo.gl/ULGdAe",
"https://cn.eslint.org/docs/rules/arrow-body-style": "https://goo.gl/d3wxJH",
"https://cn.eslint.org/docs/rules/arrow-parens": "https://goo.gl/ZXhXrq",
"https://cn.eslint.org/docs/rules/arrow-spacing": "https://goo.gl/o7Q4UP",
"https://cn.eslint.org/docs/rules/block-scoped-var": "https://goo.gl/TaeV9V",
"https://cn.eslint.org/docs/rules/block-spacing": "https://goo.gl/a6zwQy",
"https://cn.eslint.org/docs/rules/brace-style": "https://goo.gl/LV63MS",
"https://cn.eslint.org/docs/rules/callback-return": "https://goo.gl/Jfkao5",
"https://cn.eslint.org/docs/rules/camelcase": "https://goo.gl/iXXiYd",
"https://cn.eslint.org/docs/rules/capitalized-comments": "https://goo.gl/m5WtLr",
"https://cn.eslint.org/docs/rules/class-methods-use-this": "https://goo.gl/VeJmKY",
"https://cn.eslint.org/docs/rules/comma-dangle": "https://goo.gl/S7p3Qy",
"https://cn.eslint.org/docs/rules/comma-spacing": "https://goo.gl/kXHz1P",
"https://cn.eslint.org/docs/rules/comma-style": "https://goo.gl/LXCiEQ",
"https://cn.eslint.org/docs/rules/complexity": "https://goo.gl/2ffjLB",
"https://cn.eslint.org/docs/rules/computed-property-spacing": "https://goo.gl/VXS9rs",
"https://cn.eslint.org/docs/rules/consistent-return": "https://goo.gl/qkRYJS",
"https://cn.eslint.org/docs/rules/consistent-this": "https://goo.gl/ekLx6X",
"https://cn.eslint.org/docs/rules/constructor-super": "https://goo.gl/s33TbU",
"https://cn.eslint.org/docs/rules/curly": "https://goo.gl/Ush9xz",
"https://cn.eslint.org/docs/rules/default-case": "https://goo.gl/baXbrk",
"https://cn.eslint.org/docs/rules/dot-location": "https://goo.gl/Z2FRJT",
"https://cn.eslint.org/docs/rules/dot-notation": "https://goo.gl/7Lny7D",
"https://cn.eslint.org/docs/rules/eol-last": "https://goo.gl/rXnRJW",
"https://cn.eslint.org/docs/rules/eqeqeq": "https://goo.gl/GV2NLq",
"https://cn.eslint.org/docs/rules/for-direction": "https://goo.gl/Jj9QnX",
"https://cn.eslint.org/docs/rules/func-call-spacing": "https://goo.gl/W6swiY",
"https://cn.eslint.org/docs/rules/func-name-matching": "https://goo.gl/Ayujbm",
"https://cn.eslint.org/docs/rules/func-names": "https://goo.gl/4NS5mJ",
"https://cn.eslint.org/docs/rules/func-style": "https://goo.gl/42v41k",
"https://cn.eslint.org/docs/rules/function-paren-newline": "https://goo.gl/X89Qrr",
"https://cn.eslint.org/docs/rules/generator-star": "https://goo.gl/A83cfp",
"https://cn.eslint.org/docs/rules/generator-star-spacing": "https://goo.gl/r3ht6P",
"https://cn.eslint.org/docs/rules/getter-return": "https://goo.gl/cck7ZN",
"https://cn.eslint.org/docs/rules/global-require": "https://goo.gl/cZy33i",
"https://cn.eslint.org/docs/rules/global-strict": "https://goo.gl/TC2PBt",
"https://cn.eslint.org/docs/rules/guard-for-in": "https://goo.gl/d32VXq",
"https://cn.eslint.org/docs/rules/handle-callback-err": "https://goo.gl/M5RpBq",
"https://cn.eslint.org/docs/rules/id-blacklist": "https://goo.gl/xZEMbZ",
"https://cn.eslint.org/docs/rules/id-length": "https://goo.gl/doj1V5",
"https://cn.eslint.org/docs/rules/id-match": "https://goo.gl/a2Ed9U",
"https://cn.eslint.org/docs/rules/implicit-arrow-linebreak": "https://goo.gl/bTBqjv",
"https://cn.eslint.org/docs/rules/indent": "https://goo.gl/vb6iMG",
"https://cn.eslint.org/docs/rules/indent-legacy": "https://goo.gl/aPNy2p",
"https://cn.eslint.org/docs/rules/init-declarations": "https://goo.gl/qNn3a5",
"https://cn.eslint.org/docs/rules/jsx-quotes": "https://goo.gl/cPrQRt",
"https://cn.eslint.org/docs/rules/key-spacing": "https://goo.gl/X4WfLh",
"https://cn.eslint.org/docs/rules/keyword-spacing": "https://goo.gl/mLvS4W",
"https://cn.eslint.org/docs/rules/line-comment-position": "https://goo.gl/mmxD3R",
"https://cn.eslint.org/docs/rules/linebreak-style": "https://goo.gl/iGJ9Q4",
"https://cn.eslint.org/docs/rules/lines-around-comment": "https://goo.gl/5VGNqT",
"https://cn.eslint.org/docs/rules/lines-around-directive": "https://goo.gl/RGnsyb",
"https://cn.eslint.org/docs/rules/lines-between-class-members": "https://goo.gl/8oZ5HM",
"https://cn.eslint.org/docs/rules/max-classes-per-file": "https://goo.gl/mDAcc4",
"https://cn.eslint.org/docs/rules/max-depth": "https://goo.gl/wthTRC",
"https://cn.eslint.org/docs/rules/max-len": "https://goo.gl/wtQhFB",
"https://cn.eslint.org/docs/rules/max-lines": "https://goo.gl/DHxPFH",
"https://cn.eslint.org/docs/rules/max-lines-per-function": "https://goo.gl/5Cr9Vo",
"https://cn.eslint.org/docs/rules/max-nested-callbacks": "https://goo.gl/TgTYkJ",
"https://cn.eslint.org/docs/rules/max-params": "https://goo.gl/26a5bv",
"https://cn.eslint.org/docs/rules/max-statements": "https://goo.gl/pSLfb2",
"https://cn.eslint.org/docs/rules/max-statements-per-line": "https://goo.gl/Td7PSW",
"https://cn.eslint.org/docs/rules/multiline-comment-style": "https://goo.gl/9SpkTA",
"https://cn.eslint.org/docs/rules/multiline-ternary": "https://goo.gl/gpumt3",
"https://cn.eslint.org/docs/rules/new-cap": "https://goo.gl/QRoSbV",
"https://cn.eslint.org/docs/rules/new-parens": "https://goo.gl/cCNbqD",
"https://cn.eslint.org/docs/rules/newline-after-var": "https://goo.gl/Qo9WpW",
"https://cn.eslint.org/docs/rules/newline-before-return": "https://goo.gl/tqzqTP",
"https://cn.eslint.org/docs/rules/newline-per-chained-call": "https://goo.gl/YRj9zu",
"https://cn.eslint.org/docs/rules/no-alert": "https://goo.gl/EtCd8n",
"https://cn.eslint.org/docs/rules/no-array-constructor": "https://goo.gl/U8bq7b",
"https://cn.eslint.org/docs/rules/no-arrow-condition": "https://goo.gl/gAJmER",
"https://cn.eslint.org/docs/rules/no-async-promise-executor": "https://goo.gl/3QhVs7",
"https://cn.eslint.org/docs/rules/no-await-in-loop": "https://goo.gl/MQYYnK",
"https://cn.eslint.org/docs/rules/no-bitwise": "https://goo.gl/Bfzgc2",
"https://cn.eslint.org/docs/rules/no-buffer-constructor": "https://goo.gl/tKLHnZ",
"https://cn.eslint.org/docs/rules/no-caller": "https://goo.gl/ygYTkE",
"https://cn.eslint.org/docs/rules/no-case-declarations": "https://goo.gl/BfXJjB",
"https://cn.eslint.org/docs/rules/no-catch-shadow": "https://goo.gl/vFeh4T",
"https://cn.eslint.org/docs/rules/no-class-assign": "https://goo.gl/FQmpq1",
"https://cn.eslint.org/docs/rules/no-comma-dangle": "https://goo.gl/sJKQQt",
"https://cn.eslint.org/docs/rules/no-compare-neg-zero": "https://goo.gl/LysNvX",
"https://cn.eslint.org/docs/rules/no-cond-assign": "https://goo.gl/o65hjQ",
"https://cn.eslint.org/docs/rules/no-confusing-arrow": "https://goo.gl/NSdYyz",
"https://cn.eslint.org/docs/rules/no-console": "https://goo.gl/nTQpBW",
"https://cn.eslint.org/docs/rules/no-const-assign": "https://goo.gl/Jsx6CW",
"https://cn.eslint.org/docs/rules/no-constant-condition": "https://goo.gl/2xts5Q",
"https://cn.eslint.org/docs/rules/no-continue": "https://goo.gl/pszqbj",
"https://cn.eslint.org/docs/rules/no-control-regex": "https://goo.gl/wHUCBQ",
"https://cn.eslint.org/docs/rules/no-debugger": "https://goo.gl/V26po6",
"https://cn.eslint.org/docs/rules/no-delete-var": "https://goo.gl/v1pjpJ",
"https://cn.eslint.org/docs/rules/no-div-regex": "https://goo.gl/9xCPSH",
"https://cn.eslint.org/docs/rules/no-dupe-args": "https://goo.gl/uJYtjB",
"https://cn.eslint.org/docs/rules/no-dupe-class-members": "https://goo.gl/miWUwY",
"https://cn.eslint.org/docs/rules/no-dupe-keys": "https://goo.gl/51cVAu",
"https://cn.eslint.org/docs/rules/no-duplicate-case": "https://goo.gl/BJ9JVK",
"https://cn.eslint.org/docs/rules/no-duplicate-imports": "https://goo.gl/WwyUFU",
"https://cn.eslint.org/docs/rules/no-else-return": "https://goo.gl/5z4F3w",
"https://cn.eslint.org/docs/rules/no-empty": "https://goo.gl/toVvKc",
"https://cn.eslint.org/docs/rules/no-empty-character-class": "https://goo.gl/vn9Zqa",
"https://cn.eslint.org/docs/rules/no-empty-class": "https://goo.gl/6g3ZfN",
"https://cn.eslint.org/docs/rules/no-empty-function": "https://goo.gl/9T5us7",
"https://cn.eslint.org/docs/rules/no-empty-label": "https://goo.gl/786cdw",
"https://cn.eslint.org/docs/rules/no-empty-pattern": "https://goo.gl/XexSJw",
"https://cn.eslint.org/docs/rules/no-eq-null": "https://goo.gl/WGne9G",
"https://cn.eslint.org/docs/rules/no-eval": "https://goo.gl/WprDXH",
"https://cn.eslint.org/docs/rules/no-ex-assign": "https://goo.gl/VKG63U",
"https://cn.eslint.org/docs/rules/no-extend-native": "https://goo.gl/cmR1Mx",
"https://cn.eslint.org/docs/rules/no-extra-bind": "https://goo.gl/GwPMc6",
"https://cn.eslint.org/docs/rules/no-extra-boolean-cast": "https://goo.gl/AxwzPs",
"https://cn.eslint.org/docs/rules/no-extra-label": "https://goo.gl/Qp7UVC",
"https://cn.eslint.org/docs/rules/no-extra-parens": "https://goo.gl/TbcDSN",
"https://cn.eslint.org/docs/rules/no-extra-semi": "https://goo.gl/mv39jD",
"https://cn.eslint.org/docs/rules/no-extra-strict": "https://goo.gl/nczjke",
"https://cn.eslint.org/docs/rules/no-fallthrough": "https://goo.gl/UqLyC1",
"https://cn.eslint.org/docs/rules/no-floating-decimal": "https://goo.gl/LzSdYj",
"https://cn.eslint.org/docs/rules/no-func-assign": "https://goo.gl/8mhgYe",
"https://cn.eslint.org/docs/rules/no-global-assign": "https://goo.gl/Y3CwBk",
"https://cn.eslint.org/docs/rules/no-implicit-coercion": "https://goo.gl/Rpkd4y",
"https://cn.eslint.org/docs/rules/no-implicit-globals": "https://goo.gl/CwXgsN",
"https://cn.eslint.org/docs/rules/no-implied-eval": "https://goo.gl/GJeqE7",
"https://cn.eslint.org/docs/rules/no-inline-comments": "https://goo.gl/DYMZYD",
"https://cn.eslint.org/docs/rules/no-inner-declarations": "https://goo.gl/e8Ry9t",
"https://cn.eslint.org/docs/rules/no-invalid-regexp": "https://goo.gl/W23Ws3",
"https://cn.eslint.org/docs/rules/no-invalid-this": "https://goo.gl/Pqi7La",
"https://cn.eslint.org/docs/rules/no-irregular-whitespace": "https://goo.gl/NwpcNS",
"https://cn.eslint.org/docs/rules/no-iterator": "https://goo.gl/mo6wav",
"https://cn.eslint.org/docs/rules/no-label-var": "https://goo.gl/kHZxFD",
"https://cn.eslint.org/docs/rules/no-labels": "https://goo.gl/y4uvXN",
"https://cn.eslint.org/docs/rules/no-lone-blocks": "https://goo.gl/Tn6bMS",
"https://cn.eslint.org/docs/rules/no-lonely-if": "https://goo.gl/5e4tsk",
"https://cn.eslint.org/docs/rules/no-loop-func": "https://goo.gl/b4JCcG",
"https://cn.eslint.org/docs/rules/no-magic-numbers": "https://goo.gl/Eb6dLV",
"https://cn.eslint.org/docs/rules/no-misleading-character-class": "https://goo.gl/r8PRW6",
"https://cn.eslint.org/docs/rules/no-mixed-operators": "https://goo.gl/jfT7cU",
"https://cn.eslint.org/docs/rules/no-mixed-requires": "https://goo.gl/wX5ZuS",
"https://cn.eslint.org/docs/rules/no-mixed-spaces-and-tabs": "https://goo.gl/U887yM",
"https://cn.eslint.org/docs/rules/no-multi-assign": "https://goo.gl/7H5cZ9",
"https://cn.eslint.org/docs/rules/no-multi-spaces": "https://goo.gl/PphU1J",
"https://cn.eslint.org/docs/rules/no-multi-str": "https://goo.gl/SZTHjY",
"https://cn.eslint.org/docs/rules/no-multiple-empty-lines": "https://goo.gl/msdTKe",
"https://cn.eslint.org/docs/rules/no-native-reassign": "https://goo.gl/aSeHud",
"https://cn.eslint.org/docs/rules/no-negated-condition": "https://goo.gl/Quy5SZ",
"https://cn.eslint.org/docs/rules/no-negated-in-lhs": "https://goo.gl/Lzu94m",
"https://cn.eslint.org/docs/rules/no-nested-ternary": "https://goo.gl/8yfj3r",
"https://cn.eslint.org/docs/rules/no-new": "https://goo.gl/wtcf2h",
"https://cn.eslint.org/docs/rules/no-new-func": "https://goo.gl/bmvXgy",
"https://cn.eslint.org/docs/rules/no-new-object": "https://goo.gl/fkL2ey",
"https://cn.eslint.org/docs/rules/no-new-require": "https://goo.gl/agdb8s",
"https://cn.eslint.org/docs/rules/no-new-symbol": "https://goo.gl/ppuyXu",
"https://cn.eslint.org/docs/rules/no-new-wrappers": "https://goo.gl/3rRZrc",
"https://cn.eslint.org/docs/rules/no-obj-calls": "https://goo.gl/BQKfrk",
"https://cn.eslint.org/docs/rules/no-octal": "https://goo.gl/AsvKLP",
"https://cn.eslint.org/docs/rules/no-octal-escape": "https://goo.gl/SRTYnJ",
"https://cn.eslint.org/docs/rules/no-param-reassign": "https://goo.gl/6W7Hqo",
"https://cn.eslint.org/docs/rules/no-path-concat": "https://goo.gl/bmY5Lq",
"https://cn.eslint.org/docs/rules/no-plusplus": "https://goo.gl/ZpZv8Z",
"https://cn.eslint.org/docs/rules/no-process-env": "https://goo.gl/JMRD8P",
"https://cn.eslint.org/docs/rules/no-process-exit": "https://goo.gl/Q1uJKY",
"https://cn.eslint.org/docs/rules/no-proto": "https://goo.gl/PbUEc5",
"https://cn.eslint.org/docs/rules/no-prototype-builtins": "https://goo.gl/rDN6wU",
"https://cn.eslint.org/docs/rules/no-redeclare": "https://goo.gl/z46Xqb",
"https://cn.eslint.org/docs/rules/no-regex-spaces": "https://goo.gl/BxHBrn",
"https://cn.eslint.org/docs/rules/no-reserved-keys": "https://goo.gl/x7QWAH",
"https://cn.eslint.org/docs/rules/no-restricted-globals": "https://goo.gl/mWWkUJ",
"https://cn.eslint.org/docs/rules/no-restricted-imports": "https://goo.gl/sVn6su",
"https://cn.eslint.org/docs/rules/no-restricted-modules": "https://goo.gl/QzCsr1",
"https://cn.eslint.org/docs/rules/no-restricted-properties": "https://goo.gl/F4Ljzr",
"https://cn.eslint.org/docs/rules/no-restricted-syntax": "https://goo.gl/DKuxp5",
"https://cn.eslint.org/docs/rules/no-return-assign": "https://goo.gl/fvM3Uq",
"https://cn.eslint.org/docs/rules/no-return-await": "https://goo.gl/BzwKVJ",
"https://cn.eslint.org/docs/rules/no-script-url": "https://goo.gl/4toLWb",
"https://cn.eslint.org/docs/rules/no-self-assign": "https://goo.gl/H4hDQs",
"https://cn.eslint.org/docs/rules/no-self-compare": "https://goo.gl/9EcRpX",
"https://cn.eslint.org/docs/rules/no-sequences": "https://goo.gl/ZvSfJS",
"https://cn.eslint.org/docs/rules/no-shadow": "https://goo.gl/8igbGu",
"https://cn.eslint.org/docs/rules/no-shadow-restricted-names": "https://goo.gl/2mwskw",
"https://cn.eslint.org/docs/rules/no-space-before-semi": "https://goo.gl/QAXr55",
"https://cn.eslint.org/docs/rules/no-spaced-func": "https://goo.gl/CPVJrs",
"https://cn.eslint.org/docs/rules/no-sparse-arrays": "https://goo.gl/doYWXR",
"https://cn.eslint.org/docs/rules/no-sync": "https://goo.gl/PxGmBc",
"https://cn.eslint.org/docs/rules/no-tabs": "https://goo.gl/e8fkAe",
"https://cn.eslint.org/docs/rules/no-template-curly-in-string": "https://goo.gl/sV9M3N",
"https://cn.eslint.org/docs/rules/no-ternary": "https://goo.gl/jBhwmH",
"https://cn.eslint.org/docs/rules/no-this-before-super": "https://goo.gl/Mvns9g",
"https://cn.eslint.org/docs/rules/no-throw-literal": "https://goo.gl/dLWbjX",
"https://cn.eslint.org/docs/rules/no-trailing-spaces": "https://goo.gl/do41xe",
"https://cn.eslint.org/docs/rules/no-undef": "https://goo.gl/eiv6h2",
"https://cn.eslint.org/docs/rules/no-undef-init": "https://goo.gl/PxUL8i",
"https://cn.eslint.org/docs/rules/no-undefined": "https://goo.gl/9BMm9V",
"https://cn.eslint.org/docs/rules/no-underscore-dangle": "https://goo.gl/XFe9TH",
"https://cn.eslint.org/docs/rules/no-unexpected-multiline": "https://goo.gl/yaXtRD",
"https://cn.eslint.org/docs/rules/no-unmodified-loop-condition": "https://goo.gl/SBcAog",
"https://cn.eslint.org/docs/rules/no-unneeded-ternary": "https://goo.gl/ePR4zb",
"https://cn.eslint.org/docs/rules/no-unreachable": "https://goo.gl/6qzTnU",
"https://cn.eslint.org/docs/rules/no-unsafe-finally": "https://goo.gl/EAb4bo",
"https://cn.eslint.org/docs/rules/no-unsafe-negation": "https://goo.gl/Eg2qLm",
"https://cn.eslint.org/docs/rules/no-unused-expressions": "https://goo.gl/cNhm7v",
"https://cn.eslint.org/docs/rules/no-unused-labels": "https://goo.gl/xkZweW",
"https://cn.eslint.org/docs/rules/no-unused-vars": "https://goo.gl/TVHLWx",
"https://cn.eslint.org/docs/rules/no-use-before-define": "https://goo.gl/YRiHiQ",
"https://cn.eslint.org/docs/rules/no-useless-call": "https://goo.gl/gXUGru",
"https://cn.eslint.org/docs/rules/no-useless-catch": "https://goo.gl/BUbSg3",
"https://cn.eslint.org/docs/rules/no-useless-computed-key": "https://goo.gl/DCyfPQ",
"https://cn.eslint.org/docs/rules/no-useless-concat": "https://goo.gl/tmzdKt",
"https://cn.eslint.org/docs/rules/no-useless-constructor": "https://goo.gl/Ym6Z1H",
"https://cn.eslint.org/docs/rules/no-useless-escape": "https://goo.gl/Y93syg",
"https://cn.eslint.org/docs/rules/no-useless-rename": "https://goo.gl/tLS2ym",
"https://cn.eslint.org/docs/rules/no-useless-return": "https://goo.gl/6GEvDd",
"https://cn.eslint.org/docs/rules/no-var": "https://goo.gl/a9it32",
"https://cn.eslint.org/docs/rules/no-void": "https://goo.gl/mu5WcG",
"https://cn.eslint.org/docs/rules/no-warning-comments": "https://goo.gl/CPdMnZ",
"https://cn.eslint.org/docs/rules/no-whitespace-before-property": "https://goo.gl/3ePY3U",
"https://cn.eslint.org/docs/rules/no-with": "https://goo.gl/h5g6jC",
"https://cn.eslint.org/docs/rules/no-wrap-func": "https://goo.gl/7x37Fy",
"https://cn.eslint.org/docs/rules/nonblock-statement-body-position": "https://goo.gl/UWi19q",
"https://cn.eslint.org/docs/rules/object-curly-newline": "https://goo.gl/GYZhhh",
"https://cn.eslint.org/docs/rules/object-curly-spacing": "https://goo.gl/izEKvc",
"https://cn.eslint.org/docs/rules/object-property-newline": "https://goo.gl/o8D8sv",
"https://cn.eslint.org/docs/rules/object-shorthand": "https://goo.gl/wkd9YK",
"https://cn.eslint.org/docs/rules/one-var": "https://goo.gl/vuMRQ5",
"https://cn.eslint.org/docs/rules/one-var-declaration-per-line": "https://goo.gl/kaZkYE",
"https://cn.eslint.org/docs/rules/operator-assignment": "https://goo.gl/Gejmxc",
"https://cn.eslint.org/docs/rules/operator-linebreak": "https://goo.gl/hKJ9z3",
"https://cn.eslint.org/docs/rules/padded-blocks": "https://goo.gl/YovnT5",
"https://cn.eslint.org/docs/rules/padding-line-between-statements": "https://goo.gl/Lu5Q49",
"https://cn.eslint.org/docs/rules/prefer-arrow-callback": "https://goo.gl/QbRoi9",
"https://cn.eslint.org/docs/rules/prefer-const": "https://goo.gl/AgzuW9",
"https://cn.eslint.org/docs/rules/prefer-destructuring": "https://goo.gl/gX3Wiz",
"https://cn.eslint.org/docs/rules/prefer-numeric-literals": "https://goo.gl/1drSyv",
"https://cn.eslint.org/docs/rules/prefer-object-spread": "https://goo.gl/H68Bt8",
"https://cn.eslint.org/docs/rules/prefer-promise-reject-errors": "https://goo.gl/bEiUQ1",
"https://cn.eslint.org/docs/rules/prefer-reflect": "https://goo.gl/SZc8dW",
"https://cn.eslint.org/docs/rules/prefer-rest-params": "https://goo.gl/bjTC9m",
"https://cn.eslint.org/docs/rules/prefer-spread": "https://goo.gl/Q8QCcg",
"https://cn.eslint.org/docs/rules/prefer-template": "https://goo.gl/DVXoQk",
"https://cn.eslint.org/docs/rules/quote-props": "https://goo.gl/1dg94W",
"https://cn.eslint.org/docs/rules/quotes": "https://goo.gl/CUA6Lq",
"https://cn.eslint.org/docs/rules/radix": "https://goo.gl/pRCAiP",
"https://cn.eslint.org/docs/rules/require-atomic-updates": "https://goo.gl/Jc4ENw",
"https://cn.eslint.org/docs/rules/require-await": "https://goo.gl/dQ5MYF",
"https://cn.eslint.org/docs/rules/require-jsdoc": "https://goo.gl/Qdp1Gf",
"https://cn.eslint.org/docs/rules/require-unicode-regexp": "https://goo.gl/gGc7zN",
"https://cn.eslint.org/docs/rules/require-yield": "https://goo.gl/oCjH4c",
"https://cn.eslint.org/docs/rules/rest-spread-spacing": "https://goo.gl/YiDGJi",
"https://cn.eslint.org/docs/rules/semi": "https://goo.gl/bwguFS",
"https://cn.eslint.org/docs/rules/semi-spacing": "https://goo.gl/AW5Nav",
"https://cn.eslint.org/docs/rules/semi-style": "https://goo.gl/LJ1J21",
"https://cn.eslint.org/docs/rules/sort-imports": "https://goo.gl/tp8Lh4",
"https://cn.eslint.org/docs/rules/sort-keys": "https://goo.gl/9idgdW",
"https://cn.eslint.org/docs/rules/sort-vars": "https://goo.gl/NcKNwC",
"https://cn.eslint.org/docs/rules/space-after-function-name": "https://goo.gl/n6bX1f",
"https://cn.eslint.org/docs/rules/space-after-keywords": "https://goo.gl/bpuj64",
"https://cn.eslint.org/docs/rules/space-before-blocks": "https://goo.gl/ryS9Pi",
"https://cn.eslint.org/docs/rules/space-before-function-paren": "https://goo.gl/k493XB",
"https://cn.eslint.org/docs/rules/space-before-function-parentheses": "https://goo.gl/HWjo2X",
"https://cn.eslint.org/docs/rules/space-before-keywords": "https://goo.gl/b7UxpB",
"https://cn.eslint.org/docs/rules/space-in-brackets": "https://goo.gl/5vMrhY",
"https://cn.eslint.org/docs/rules/space-in-parens": "https://goo.gl/Eqb87U",
"https://cn.eslint.org/docs/rules/space-infix-ops": "https://goo.gl/HHFzmp",
"https://cn.eslint.org/docs/rules/space-return-throw-case": "https://goo.gl/d8KY9V",
"https://cn.eslint.org/docs/rules/space-unary-ops": "https://goo.gl/NrxkxK",
"https://cn.eslint.org/docs/rules/space-unary-word-ops": "https://goo.gl/v9vtL8",
"https://cn.eslint.org/docs/rules/spaced-comment": "https://goo.gl/mxGdT5",
"https://cn.eslint.org/docs/rules/spaced-line-comment": "https://goo.gl/MgYufa",
"https://cn.eslint.org/docs/rules/strict": "https://goo.gl/33xKf6",
"https://cn.eslint.org/docs/rules/switch-colon-spacing": "https://goo.gl/8DCF7D",
"https://cn.eslint.org/docs/rules/symbol-description": "https://goo.gl/u49bsd",
"https://cn.eslint.org/docs/rules/template-curly-spacing": "https://goo.gl/E4j6bM",
"https://cn.eslint.org/docs/rules/template-tag-spacing": "https://goo.gl/GBU2p2",
"https://cn.eslint.org/docs/rules/unicode-bom": "https://goo.gl/GzfGAx",
"https://cn.eslint.org/docs/rules/use-isnan": "https://goo.gl/7JCGsR",
"https://cn.eslint.org/docs/rules/valid-jsdoc": "https://goo.gl/RjQRoy",
"https://cn.eslint.org/docs/rules/valid-typeof": "https://goo.gl/qUZeWL",
"https://cn.eslint.org/docs/rules/vars-on-top": "https://goo.gl/eStB2w",
"https://cn.eslint.org/docs/rules/wrap-iife": "https://goo.gl/Ga4Quw",
"https://cn.eslint.org/docs/rules/wrap-regex": "https://goo.gl/r1jqE2",
"https://cn.eslint.org/docs/rules/yield-star-spacing": "https://goo.gl/ktaf4L",
"https://cn.eslint.org/docs/rules/yoda": "https://goo.gl/zoi11X",
"https://eslint.org/docs/rules/accessor-pairs": "https://goo.gl/7uZQRL",
"https://eslint.org/docs/rules/array-bracket-newline": "https://goo.gl/4tJKTb",
"https://eslint.org/docs/rules/array-bracket-spacing": "https://goo.gl/yLjaT2",
"https://eslint.org/docs/rules/array-callback-return": "https://goo.gl/53vHFw",
"https://eslint.org/docs/rules/array-element-newline": "https://goo.gl/a4wBYc",
"https://eslint.org/docs/rules/arrow-body-style": "https://goo.gl/dbYgec",
"https://eslint.org/docs/rules/arrow-parens": "https://goo.gl/mDwFw5",
"https://eslint.org/docs/rules/arrow-spacing": "https://goo.gl/kHwmGN",
"https://eslint.org/docs/rules/block-scoped-var": "https://goo.gl/JzgLDw",
"https://eslint.org/docs/rules/block-spacing": "https://goo.gl/gGrUoZ",
"https://eslint.org/docs/rules/brace-style": "https://goo.gl/81WVUc",
"https://eslint.org/docs/rules/callback-return": "https://goo.gl/J7eJum",
"https://eslint.org/docs/rules/camelcase": "https://goo.gl/FnQuue",
"https://eslint.org/docs/rules/capitalized-comments": "https://goo.gl/EqEbj8",
"https://eslint.org/docs/rules/class-methods-use-this": "https://goo.gl/V5JDtH",
"https://eslint.org/docs/rules/comma-dangle": "https://goo.gl/JsnfpB",
"https://eslint.org/docs/rules/comma-spacing": "https://goo.gl/3v8X2v",
"https://eslint.org/docs/rules/comma-style": "https://goo.gl/wFp28z",
"https://eslint.org/docs/rules/complexity": "https://goo.gl/Sg4wWE",
"https://eslint.org/docs/rules/computed-property-spacing": "https://goo.gl/3PqEfK",
"https://eslint.org/docs/rules/consistent-return": "https://goo.gl/PAeq2o",
"https://eslint.org/docs/rules/consistent-this": "https://goo.gl/qubw6z",
"https://eslint.org/docs/rules/constructor-super": "https://goo.gl/9erszW",
"https://eslint.org/docs/rules/curly": "https://goo.gl/Do2NeD",
"https://eslint.org/docs/rules/default-case": "https://goo.gl/5Dwr7J",
"https://eslint.org/docs/rules/dot-location": "https://goo.gl/HjoNJm",
"https://eslint.org/docs/rules/dot-notation": "https://goo.gl/6EmZTZ",
"https://eslint.org/docs/rules/eol-last": "https://goo.gl/QsuTbu",
"https://eslint.org/docs/rules/eqeqeq": "https://goo.gl/Nc8yRj",
"https://eslint.org/docs/rules/for-direction": "https://goo.gl/87QUaf",
"https://eslint.org/docs/rules/func-call-spacing": "https://goo.gl/Rv24xM",
"https://eslint.org/docs/rules/func-name-matching": "https://goo.gl/Z9F6ST",
"https://eslint.org/docs/rules/func-names": "https://goo.gl/wvp61Y",
"https://eslint.org/docs/rules/func-style": "https://goo.gl/CTQ8qR",
"https://eslint.org/docs/rules/function-paren-newline": "https://goo.gl/K2DDf2",
"https://eslint.org/docs/rules/generator-star": "https://goo.gl/gyzvu9",
"https://eslint.org/docs/rules/generator-star-spacing": "https://goo.gl/mPeX2Y",
"https://eslint.org/docs/rules/getter-return": "https://goo.gl/rmK32J",
"https://eslint.org/docs/rules/global-require": "https://goo.gl/zPEftM",
"https://eslint.org/docs/rules/global-strict": "https://goo.gl/MTnuUL",
"https://eslint.org/docs/rules/guard-for-in": "https://goo.gl/NB8wNq",
"https://eslint.org/docs/rules/handle-callback-err": "https://goo.gl/xWBzua",
"https://eslint.org/docs/rules/id-blacklist": "https://goo.gl/bdfvL8",
"https://eslint.org/docs/rules/id-length": "https://goo.gl/4J8tHX",
"https://eslint.org/docs/rules/id-match": "https://goo.gl/ogjv9D",
"https://eslint.org/docs/rules/implicit-arrow-linebreak": "https://goo.gl/9Ufc4H",
"https://eslint.org/docs/rules/indent": "https://goo.gl/LJYkTn",
"https://eslint.org/docs/rules/indent-legacy": "https://goo.gl/JMkVqX",
"https://eslint.org/docs/rules/init-declarations": "https://goo.gl/nnMz5x",
"https://eslint.org/docs/rules/jsx-quotes": "https://goo.gl/tqaAzd",
"https://eslint.org/docs/rules/key-spacing": "https://goo.gl/cn35KV",
"https://eslint.org/docs/rules/keyword-spacing": "https://goo.gl/MTQBYt",
"https://eslint.org/docs/rules/line-comment-position": "https://goo.gl/1M2FZP",
"https://eslint.org/docs/rules/linebreak-style": "https://goo.gl/2LcbhM",
"https://eslint.org/docs/rules/lines-around-comment": "https://goo.gl/uZvAwc",
"https://eslint.org/docs/rules/lines-around-directive": "https://goo.gl/ey1SZT",
"https://eslint.org/docs/rules/lines-between-class-members": "https://goo.gl/X2ef8r",
"https://eslint.org/docs/rules/max-classes-per-file": "https://goo.gl/x2ynE7",
"https://eslint.org/docs/rules/max-depth": "https://goo.gl/bJBVHL",
"https://eslint.org/docs/rules/max-len": "https://goo.gl/fwTk5J",
"https://eslint.org/docs/rules/max-lines": "https://goo.gl/RyfYCZ",
"https://eslint.org/docs/rules/max-lines-per-function": "https://goo.gl/kdqY4j",
"https://eslint.org/docs/rules/max-nested-callbacks": "https://goo.gl/zUaTzn",
"https://eslint.org/docs/rules/max-params": "https://goo.gl/mcFeCL",
"https://eslint.org/docs/rules/max-statements": "https://goo.gl/HQwkqW",
"https://eslint.org/docs/rules/max-statements-per-line": "https://goo.gl/3wA97h",
"https://eslint.org/docs/rules/multiline-comment-style": "https://goo.gl/8oTEhD",
"https://eslint.org/docs/rules/multiline-ternary": "https://goo.gl/mmHaif",
"https://eslint.org/docs/rules/new-cap": "https://goo.gl/TUz2wm",
"https://eslint.org/docs/rules/new-parens": "https://goo.gl/rUU8S9",
"https://eslint.org/docs/rules/newline-after-var": "https://goo.gl/oCmpTH",
"https://eslint.org/docs/rules/newline-before-return": "https://goo.gl/fiLy8u",
"https://eslint.org/docs/rules/newline-per-chained-call": "https://goo.gl/paG2ZJ",
"https://eslint.org/docs/rules/no-alert": "https://goo.gl/cSwnER",
"https://eslint.org/docs/rules/no-array-constructor": "https://goo.gl/RaJoJ5",
"https://eslint.org/docs/rules/no-arrow-condition": "https://goo.gl/LpFa1j",
"https://eslint.org/docs/rules/no-async-promise-executor": "https://goo.gl/uHzDfV",
"https://eslint.org/docs/rules/no-await-in-loop": "https://goo.gl/4U2NaF",
"https://eslint.org/docs/rules/no-bitwise": "https://goo.gl/Bfvkyn",
"https://eslint.org/docs/rules/no-buffer-constructor": "https://goo.gl/yMcGzY",
"https://eslint.org/docs/rules/no-caller": "https://goo.gl/vn6xsN",
"https://eslint.org/docs/rules/no-case-declarations": "https://goo.gl/yzSUUz",
"https://eslint.org/docs/rules/no-catch-shadow": "https://goo.gl/1MtbhK",
"https://eslint.org/docs/rules/no-class-assign": "https://goo.gl/7Mw8rd",
"https://eslint.org/docs/rules/no-comma-dangle": "https://goo.gl/DZBqii",
"https://eslint.org/docs/rules/no-compare-neg-zero": "https://goo.gl/pKj8Dn",
"https://eslint.org/docs/rules/no-cond-assign": "https://goo.gl/MTHcGT",
"https://eslint.org/docs/rules/no-confusing-arrow": "https://goo.gl/xUmsX2",
"https://eslint.org/docs/rules/no-console": "https://goo.gl/tii7g6",
"https://eslint.org/docs/rules/no-const-assign": "https://goo.gl/E9Yw74",
"https://eslint.org/docs/rules/no-constant-condition": "https://goo.gl/2Wu2TH",
"https://eslint.org/docs/rules/no-continue": "https://goo.gl/eUCBWg",
"https://eslint.org/docs/rules/no-control-regex": "https://goo.gl/g2ReKi",
"https://eslint.org/docs/rules/no-debugger": "https://goo.gl/wqnpZp",
"https://eslint.org/docs/rules/no-delete-var": "https://goo.gl/Z23bjD",
"https://eslint.org/docs/rules/no-div-regex": "https://goo.gl/po5kqH",
"https://eslint.org/docs/rules/no-dupe-args": "https://goo.gl/5c4dif",
"https://eslint.org/docs/rules/no-dupe-class-members": "https://goo.gl/pcCkhj",
"https://eslint.org/docs/rules/no-dupe-keys": "https://goo.gl/anBqjE",
"https://eslint.org/docs/rules/no-duplicate-case": "https://goo.gl/RFF81K",
"https://eslint.org/docs/rules/no-duplicate-imports": "https://goo.gl/o5z6NR",
"https://eslint.org/docs/rules/no-else-return": "https://goo.gl/csbN7S",
"https://eslint.org/docs/rules/no-empty": "https://goo.gl/46n88U",
"https://eslint.org/docs/rules/no-empty-character-class": "https://goo.gl/RKdSvc",
"https://eslint.org/docs/rules/no-empty-class": "https://goo.gl/FRtjrN",
"https://eslint.org/docs/rules/no-empty-function": "https://goo.gl/ugZf3o",
"https://eslint.org/docs/rules/no-empty-label": "https://goo.gl/KAzfss",
"https://eslint.org/docs/rules/no-empty-pattern": "https://goo.gl/rg2E9Z",
"https://eslint.org/docs/rules/no-eq-null": "https://goo.gl/ULQ6vH",
"https://eslint.org/docs/rules/no-eval": "https://goo.gl/yXPB4G",
"https://eslint.org/docs/rules/no-ex-assign": "https://goo.gl/38LwvH",
"https://eslint.org/docs/rules/no-extend-native": "https://goo.gl/eE3LpT",
"https://eslint.org/docs/rules/no-extra-bind": "https://goo.gl/3i8We4",
"https://eslint.org/docs/rules/no-extra-boolean-cast": "https://goo.gl/57WT1V",
"https://eslint.org/docs/rules/no-extra-label": "https://goo.gl/CEUN4i",
"https://eslint.org/docs/rules/no-extra-parens": "https://goo.gl/iWWKu7",
"https://eslint.org/docs/rules/no-extra-semi": "https://goo.gl/wszw5N",
"https://eslint.org/docs/rules/no-extra-strict": "https://goo.gl/q4vNWF",
"https://eslint.org/docs/rules/no-fallthrough": "https://goo.gl/W9FUwc",
"https://eslint.org/docs/rules/no-floating-decimal": "https://goo.gl/tR8f9Q",
"https://eslint.org/docs/rules/no-func-assign": "https://goo.gl/Lzy2PR",
"https://eslint.org/docs/rules/no-global-assign": "https://goo.gl/5jZXJh",
"https://eslint.org/docs/rules/no-implicit-coercion": "https://goo.gl/NRNY6G",
"https://eslint.org/docs/rules/no-implicit-globals": "https://goo.gl/b5m7Uz",
"https://eslint.org/docs/rules/no-implied-eval": "https://goo.gl/g1YrLW",
"https://eslint.org/docs/rules/no-inline-comments": "https://goo.gl/E8BZFF",
"https://eslint.org/docs/rules/no-inner-declarations": "https://goo.gl/DRT3T5",
"https://eslint.org/docs/rules/no-invalid-regexp": "https://goo.gl/TThtAo",
"https://eslint.org/docs/rules/no-invalid-this": "https://goo.gl/ab5Nme",
"https://eslint.org/docs/rules/no-irregular-whitespace": "https://goo.gl/wjRUrB",
"https://eslint.org/docs/rules/no-iterator": "https://goo.gl/x2AgbB",
"https://eslint.org/docs/rules/no-label-var": "https://goo.gl/8N8Kkz",
"https://eslint.org/docs/rules/no-labels": "https://goo.gl/7h7ecr",
"https://eslint.org/docs/rules/no-lone-blocks": "https://goo.gl/bKh8dc",
"https://eslint.org/docs/rules/no-lonely-if": "https://goo.gl/h6sdif",
"https://eslint.org/docs/rules/no-loop-func": "https://goo.gl/AvJz2g",
"https://eslint.org/docs/rules/no-magic-numbers": "https://goo.gl/n3X7b2",
"https://eslint.org/docs/rules/no-misleading-character-class": "https://goo.gl/uKF3M2",
"https://eslint.org/docs/rules/no-mixed-operators": "https://goo.gl/wn9Qa7",
"https://eslint.org/docs/rules/no-mixed-requires": "https://goo.gl/oCh4su",
"https://eslint.org/docs/rules/no-mixed-spaces-and-tabs": "https://goo.gl/nxh7Zz",
"https://eslint.org/docs/rules/no-multi-assign": "https://goo.gl/5mkEwk",
"https://eslint.org/docs/rules/no-multi-spaces": "https://goo.gl/uerP5H",
"https://eslint.org/docs/rules/no-multi-str": "https://goo.gl/TAsp2h",
"https://eslint.org/docs/rules/no-multiple-empty-lines": "https://goo.gl/fYzY3n",
"https://eslint.org/docs/rules/no-native-reassign": "https://goo.gl/ksjtd7",
"https://eslint.org/docs/rules/no-negated-condition": "https://goo.gl/zLD7fY",
"https://eslint.org/docs/rules/no-negated-in-lhs": "https://goo.gl/B56aR8",
"https://eslint.org/docs/rules/no-nested-ternary": "https://goo.gl/KDUW7p",
"https://eslint.org/docs/rules/no-new": "https://goo.gl/VMVj65",
"https://eslint.org/docs/rules/no-new-func": "https://goo.gl/i1eJrs",
"https://eslint.org/docs/rules/no-new-object": "https://goo.gl/MCY6uE",
"https://eslint.org/docs/rules/no-new-require": "https://goo.gl/yzuNr8",
"https://eslint.org/docs/rules/no-new-symbol": "https://goo.gl/mrVYMb",
"https://eslint.org/docs/rules/no-new-wrappers": "https://goo.gl/tmXggC",
"https://eslint.org/docs/rules/no-obj-calls": "https://goo.gl/QHGsd2",
"https://eslint.org/docs/rules/no-octal": "https://goo.gl/H6AUPB",
"https://eslint.org/docs/rules/no-octal-escape": "https://goo.gl/mh1GHn",
"https://eslint.org/docs/rules/no-param-reassign": "https://goo.gl/FDxpvi",
"https://eslint.org/docs/rules/no-path-concat": "https://goo.gl/wV2vDS",
"https://eslint.org/docs/rules/no-plusplus": "https://goo.gl/X9t3ws",
"https://eslint.org/docs/rules/no-process-env": "https://goo.gl/J5VVYF",
"https://eslint.org/docs/rules/no-process-exit": "https://goo.gl/PxrihL",
"https://eslint.org/docs/rules/no-proto": "https://goo.gl/YKLp2Z",
"https://eslint.org/docs/rules/no-prototype-builtins": "https://goo.gl/Fz5sMf",
"https://eslint.org/docs/rules/no-redeclare": "https://goo.gl/ocyGJ3",
"https://eslint.org/docs/rules/no-regex-spaces": "https://goo.gl/wW7SFf",
"https://eslint.org/docs/rules/no-reserved-keys": "https://goo.gl/bDkv3g",
"https://eslint.org/docs/rules/no-restricted-globals": "https://goo.gl/q5rBue",
"https://eslint.org/docs/rules/no-restricted-imports": "https://goo.gl/DKcBke",
"https://eslint.org/docs/rules/no-restricted-modules": "https://goo.gl/3T99Ms",
"https://eslint.org/docs/rules/no-restricted-properties": "https://goo.gl/cMgVYD",
"https://eslint.org/docs/rules/no-restricted-syntax": "https://goo.gl/WKxjA5",
"https://eslint.org/docs/rules/no-return-assign": "https://goo.gl/zphLhK",
"https://eslint.org/docs/rules/no-return-await": "https://goo.gl/Eb3Fud",
"https://eslint.org/docs/rules/no-script-url": "https://goo.gl/op7yHT",
"https://eslint.org/docs/rules/no-self-assign": "https://goo.gl/JzV8V7",
"https://eslint.org/docs/rules/no-self-compare": "https://goo.gl/XMwGuR",
"https://eslint.org/docs/rules/no-sequences": "https://goo.gl/4FUKrk",
"https://eslint.org/docs/rules/no-shadow": "https://goo.gl/1U9qqY",
"https://eslint.org/docs/rules/no-shadow-restricted-names": "https://goo.gl/H5ygf4",
"https://eslint.org/docs/rules/no-space-before-semi": "https://goo.gl/snyHru",
"https://eslint.org/docs/rules/no-spaced-func": "https://goo.gl/KGcEji",
"https://eslint.org/docs/rules/no-sparse-arrays": "https://goo.gl/5pqc5L",
"https://eslint.org/docs/rules/no-sync": "https://goo.gl/jTVLfz",
"https://eslint.org/docs/rules/no-tabs": "https://goo.gl/1G22QH",
"https://eslint.org/docs/rules/no-template-curly-in-string": "https://goo.gl/AHy8PR",
"https://eslint.org/docs/rules/no-ternary": "https://goo.gl/sLCvyh",
"https://eslint.org/docs/rules/no-this-before-super": "https://goo.gl/j9zDGV",
"https://eslint.org/docs/rules/no-throw-literal": "https://goo.gl/xW53nd",
"https://eslint.org/docs/rules/no-trailing-spaces": "https://goo.gl/KH2ZTC",
"https://eslint.org/docs/rules/no-undef": "https://goo.gl/vDja7v",
"https://eslint.org/docs/rules/no-undef-init": "https://goo.gl/B1ujP1",
"https://eslint.org/docs/rules/no-undefined": "https://goo.gl/a9154p",
"https://eslint.org/docs/rules/no-underscore-dangle": "https://goo.gl/ihmhCZ",
"https://eslint.org/docs/rules/no-unexpected-multiline": "https://goo.gl/nSPwAH",
"https://eslint.org/docs/rules/no-unmodified-loop-condition": "https://goo.gl/ghyNBd",
"https://eslint.org/docs/rules/no-unneeded-ternary": "https://goo.gl/diFSo4",
"https://eslint.org/docs/rules/no-unreachable": "https://goo.gl/zsUjtf",
"https://eslint.org/docs/rules/no-unsafe-finally": "https://goo.gl/fU3SVS",
"https://eslint.org/docs/rules/no-unsafe-negation": "https://goo.gl/WZ9xJZ",
"https://eslint.org/docs/rules/no-unused-expressions": "https://goo.gl/evnzT5",
"https://eslint.org/docs/rules/no-unused-labels": "https://goo.gl/2jXLgN",
"https://eslint.org/docs/rules/no-unused-vars": "https://goo.gl/afxCC9",
"https://eslint.org/docs/rules/no-use-before-define": "https://goo.gl/QbNMKo",
"https://eslint.org/docs/rules/no-useless-call": "https://goo.gl/RmPNnr",
"https://eslint.org/docs/rules/no-useless-catch": "https://goo.gl/9PMe4r",
"https://eslint.org/docs/rules/no-useless-computed-key": "https://goo.gl/gzFuqZ",
"https://eslint.org/docs/rules/no-useless-concat": "https://goo.gl/LNo9gp",
"https://eslint.org/docs/rules/no-useless-constructor": "https://goo.gl/768P4c",
"https://eslint.org/docs/rules/no-useless-escape": "https://goo.gl/jZxvbo",
"https://eslint.org/docs/rules/no-useless-rename": "https://goo.gl/6jhjNd",
"https://eslint.org/docs/rules/no-useless-return": "https://goo.gl/M11Uve",
"https://eslint.org/docs/rules/no-var": "https://goo.gl/JGAR1z",
"https://eslint.org/docs/rules/no-void": "https://goo.gl/XeuvUg",
"https://eslint.org/docs/rules/no-warning-comments": "https://goo.gl/sP7aF5",
"https://eslint.org/docs/rules/no-whitespace-before-property": "https://goo.gl/w6ZQ4p",
"https://eslint.org/docs/rules/no-with": "https://goo.gl/caFVq6",
"https://eslint.org/docs/rules/no-wrap-func": "https://goo.gl/KMjJmQ",
"https://eslint.org/docs/rules/nonblock-statement-body-position": "https://goo.gl/9JQdqc",
"https://eslint.org/docs/rules/object-curly-newline": "https://goo.gl/wkbRJ2",
"https://eslint.org/docs/rules/object-curly-spacing": "https://goo.gl/4gwRQn",
"https://eslint.org/docs/rules/object-property-newline": "https://goo.gl/neEy5p",
"https://eslint.org/docs/rules/object-shorthand": "https://goo.gl/vcyh2t",
"https://eslint.org/docs/rules/one-var": "https://goo.gl/jErZDQ",
"https://eslint.org/docs/rules/one-var-declaration-per-line": "https://goo.gl/gBMgoe",
"https://eslint.org/docs/rules/operator-assignment": "https://goo.gl/iYMC3X",
"https://eslint.org/docs/rules/operator-linebreak": "https://goo.gl/eqUZpW",
"https://eslint.org/docs/rules/padded-blocks": "https://goo.gl/G1bn5H",
"https://eslint.org/docs/rules/padding-line-between-statements": "https://goo.gl/WBFzLr",
"https://eslint.org/docs/rules/prefer-arrow-callback": "https://goo.gl/gePaQq",
"https://eslint.org/docs/rules/prefer-const": "https://goo.gl/pA5nu5",
"https://eslint.org/docs/rules/prefer-destructuring": "https://goo.gl/dR7UyM",
"https://eslint.org/docs/rules/prefer-numeric-literals": "https://goo.gl/AR6rQY",
"https://eslint.org/docs/rules/prefer-object-spread": "https://goo.gl/zXLp2E",
"https://eslint.org/docs/rules/prefer-promise-reject-errors": "https://goo.gl/Yi9XTN",
"https://eslint.org/docs/rules/prefer-reflect": "https://goo.gl/UfMZA8",
"https://eslint.org/docs/rules/prefer-rest-params": "https://goo.gl/HweW2g",
"https://eslint.org/docs/rules/prefer-spread": "https://goo.gl/zNgSqW",
"https://eslint.org/docs/rules/prefer-template": "https://goo.gl/YA3vfv",
"https://eslint.org/docs/rules/quote-props": "https://goo.gl/NMZure",
"https://eslint.org/docs/rules/quotes": "https://goo.gl/osmaHX",
"https://eslint.org/docs/rules/radix": "https://goo.gl/uaFXNm",
"https://eslint.org/docs/rules/require-atomic-updates": "https://goo.gl/Dwksps",
"https://eslint.org/docs/rules/require-await": "https://goo.gl/f3rHks",
"https://eslint.org/docs/rules/require-jsdoc": "https://goo.gl/AgBMgh",
"https://eslint.org/docs/rules/require-unicode-regexp": "https://goo.gl/da8GSP",
"https://eslint.org/docs/rules/require-yield": "https://goo.gl/94W5f1",
"https://eslint.org/docs/rules/rest-spread-spacing": "https://goo.gl/NwbMcK",
"https://eslint.org/docs/rules/semi": "https://goo.gl/R3Hyja",
"https://eslint.org/docs/rules/semi-spacing": "https://goo.gl/6Q7Qua",
"https://eslint.org/docs/rules/semi-style": "https://goo.gl/rFdSoh",
"https://eslint.org/docs/rules/sort-imports": "https://goo.gl/ZRtQ16",
"https://eslint.org/docs/rules/sort-keys": "https://goo.gl/ccmdKC",
"https://eslint.org/docs/rules/sort-vars": "https://goo.gl/iXuQdX",
"https://eslint.org/docs/rules/space-after-function-name": "https://goo.gl/dc7Roc",
"https://eslint.org/docs/rules/space-after-keywords": "https://goo.gl/DxX1k4",
"https://eslint.org/docs/rules/space-before-blocks": "https://goo.gl/NX1V9k",
"https://eslint.org/docs/rules/space-before-function-paren": "https://goo.gl/mLYcg8",
"https://eslint.org/docs/rules/space-before-function-parentheses": "https://goo.gl/Epf2eB",
"https://eslint.org/docs/rules/space-before-keywords": "https://goo.gl/rrgq1T",
"https://eslint.org/docs/rules/space-in-brackets": "https://goo.gl/Za5f6u",
"https://eslint.org/docs/rules/space-in-parens": "https://goo.gl/TbGwdX",
"https://eslint.org/docs/rules/space-infix-ops": "https://goo.gl/Ry64VX",
"https://eslint.org/docs/rules/space-return-throw-case": "https://goo.gl/KLjc7W",
"https://eslint.org/docs/rules/space-unary-ops": "https://goo.gl/hYNg7U",
"https://eslint.org/docs/rules/space-unary-word-ops": "https://goo.gl/3qwwj4",
"https://eslint.org/docs/rules/spaced-comment": "https://goo.gl/rMDkHM",
"https://eslint.org/docs/rules/spaced-line-comment": "https://goo.gl/i1F7kW",
"https://eslint.org/docs/rules/strict": "https://goo.gl/tcz9Kf",
"https://eslint.org/docs/rules/switch-colon-spacing": "https://goo.gl/Ar9qti",
"https://eslint.org/docs/rules/symbol-description": "https://goo.gl/PFWuS6",
"https://eslint.org/docs/rules/template-curly-spacing": "https://goo.gl/5xSd4s",
"https://eslint.org/docs/rules/template-tag-spacing": "https://goo.gl/gYrm9D",
"https://eslint.org/docs/rules/unicode-bom": "https://goo.gl/2aiqtr",
"https://eslint.org/docs/rules/use-isnan": "https://goo.gl/h6kQrC",
"https://eslint.org/docs/rules/valid-jsdoc": "https://goo.gl/afmP8K",
"https://eslint.org/docs/rules/valid-typeof": "https://goo.gl/E2CRs7",
"https://eslint.org/docs/rules/vars-on-top": "https://goo.gl/C8pZAX",
"https://eslint.org/docs/rules/wrap-iife": "https://goo.gl/iqmA4D",
"https://eslint.org/docs/rules/wrap-regex": "https://goo.gl/T6Ry1w",
"https://eslint.org/docs/rules/yield-star-spacing": "https://goo.gl/yMxpvL",
"https://eslint.org/docs/rules/yoda": "https://goo.gl/QdNViH",
"https://github.com/6riversystems/eslint-plugin-6river/blob/head/docs/rules/new-cap.md#readme": "https://goo.gl/QqioAa",
"https://github.com/7geese/eslint-plugin-7g/blob/head/docs/rules/__rule-template__.md#readme": "https://goo.gl/8C4Qiy",
"https://github.com/7geese/eslint-plugin-7g/blob/head/docs/rules/apollo-query-filename.md#readme": "https://goo.gl/QXpuxu",
"https://github.com/7geese/eslint-plugin-7g/blob/head/docs/rules/no-classname-on-common-components.md#readme": "https://goo.gl/FthWAo",
"https://github.com/7geese/eslint-plugin-7g/blob/head/docs/rules/no-sg-in-components.md#readme": "https://goo.gl/qiwnyC",
"https://github.com/7geese/eslint-plugin-7g/blob/head/docs/rules/redux-connect-filenames.md#readme": "https://goo.gl/iUWV6i",
"https://github.com/adalbertoteixeira/eslint-plugin-no-global-lodash/blob/head/docs/rules/no-global-lodash.md#readme": "https://goo.gl/oMSo4u",
"https://github.com/adalbertoteixeira/eslint-plugin-react-custom-rules/blob/head/docs/rules/actions-export-pattern.md#readme": "https://goo.gl/GvZfgJ",
"https://github.com/adalbertoteixeira/eslint-plugin-react-custom-rules/blob/head/docs/rules/react-directive-no-value-prop.md#readme": "https://goo.gl/zUYpoS",
"https://github.com/adalbertoteixeira/eslint-plugin-react-custom-rules/blob/head/docs/rules/selectors-default-export-only.md#readme": "https://goo.gl/amhW9v",
"https://github.com/airbnb/eslint-plugin-react-with-styles/blob/head/docs/rules/no-unused-styles.md#readme": "https://goo.gl/uvGU2A",
"https://github.com/airbnb/eslint-plugin-react-with-styles/blob/head/docs/rules/only-spread-css.md#readme": "https://goo.gl/PWNQRc",
"https://github.com/alecxe/eslint-plugin-protractor/blob/head/docs/rules/array-callback-return.md#readme": "https://goo.gl/EeXnuS",
"https://github.com/alecxe/eslint-plugin-protractor/blob/head/docs/rules/bare-element-finders.md#readme": "https://goo.gl/uPX89e",
"https://github.com/alecxe/eslint-plugin-protractor/blob/head/docs/rules/by-css-shortcut.md#readme": "https://goo.gl/rBdyoC",
"https://github.com/alecxe/eslint-plugin-protractor/blob/head/docs/rules/correct-chaining.md#readme": "https://goo.gl/KssK3W",
"https://github.com/alecxe/eslint-plugin-protractor/blob/head/docs/rules/limit-selector-depth.md#readme": "https://goo.gl/tJWVmY",
"https://github.com/alecxe/eslint-plugin-protractor/blob/head/docs/rules/missing-perform.md#readme": "https://goo.gl/GM3ynr",
"https://github.com/alecxe/eslint-plugin-protractor/blob/head/docs/rules/missing-wait-message.md#readme": "https://goo.gl/LxGb3g",
"https://github.com/alecxe/eslint-plugin-protractor/blob/head/docs/rules/no-absolute-url.md#readme": "https://goo.gl/hUnEbX",
"https://github.com/alecxe/eslint-plugin-protractor/blob/head/docs/rules/no-angular-attributes.md#readme": "https://goo.gl/6XcKNK",
"https://github.com/alecxe/eslint-plugin-protractor/blob/head/docs/rules/no-angular-classes.md#readme": "https://goo.gl/VzNNXS",
"https://github.com/alecxe/eslint-plugin-protractor/blob/head/docs/rules/no-array-finder-methods.md#readme": "https://goo.gl/JVs6dx",
"https://github.com/alecxe/eslint-plugin-protractor/blob/head/docs/rules/no-bootstrap-classes.md#readme": "https://goo.gl/DpqYLD",
"https://github.com/alecxe/eslint-plugin-protractor/blob/head/docs/rules/no-browser-driver.md#readme": "https://goo.gl/CvmnHK",
"https://github.com/alecxe/eslint-plugin-protractor/blob/head/docs/rules/no-browser-pause.md#readme": "https://goo.gl/ZmTfce",
"https://github.com/alecxe/eslint-plugin-protractor/blob/head/docs/rules/no-browser-sleep.md#readme": "https://goo.gl/fexGyE",
"https://github.com/alecxe/eslint-plugin-protractor/blob/head/docs/rules/no-by-xpath.md#readme": "https://goo.gl/fCmMRa",
"https://github.com/alecxe/eslint-plugin-protractor/blob/head/docs/rules/no-compound-classes.md#readme": "https://goo.gl/97Vvxb",
"https://github.com/alecxe/eslint-plugin-protractor/blob/head/docs/rules/no-describe-selectors.md#readme": "https://goo.gl/5Ud3Xi",
"https://github.com/alecxe/eslint-plugin-protractor/blob/head/docs/rules/no-execute-script.md#readme": "https://goo.gl/iMVxHT",
"https://github.com/alecxe/eslint-plugin-protractor/blob/head/docs/rules/no-expect-in-po.md#readme": "https://goo.gl/H71NrJ",
"https://github.com/alecxe/eslint-plugin-protractor/blob/head/docs/rules/no-get-in-it.md#readme": "https://goo.gl/1EAMsh",
"https://github.com/alecxe/eslint-plugin-protractor/blob/head/docs/rules/no-get-inner-outer-html.md#readme": "https://goo.gl/fLqfdm",
"https://github.com/alecxe/eslint-plugin-protractor/blob/head/docs/rules/no-get-location-abs-url.md#readme": "https://goo.gl/1uhYbC",
"https://github.com/alecxe/eslint-plugin-protractor/blob/head/docs/rules/no-get-raw-id.md#readme": "https://goo.gl/wXLbsY",
"https://github.com/alecxe/eslint-plugin-protractor/blob/head/docs/rules/no-invalid-selectors.md#readme": "https://goo.gl/L6XJsF",
"https://github.com/alecxe/eslint-plugin-protractor/blob/head/docs/rules/no-promise-in-if.md#readme": "https://goo.gl/s5AjrA",
"https://github.com/alecxe/eslint-plugin-protractor/blob/head/docs/rules/no-repetitive-locators.md#readme": "https://goo.gl/bBs3ed",
"https://github.com/alecxe/eslint-plugin-protractor/blob/head/docs/rules/no-repetitive-selectors.md#readme": "https://goo.gl/uQWQT6",
"https://github.com/alecxe/eslint-plugin-protractor/blob/head/docs/rules/no-shadowing.md#readme": "https://goo.gl/onm3jd",
"https://github.com/alecxe/eslint-plugin-protractor/blob/head/docs/rules/use-angular-locators.md#readme": "https://goo.gl/XnXsvX",
"https://github.com/alecxe/eslint-plugin-protractor/blob/head/docs/rules/use-count-method.md#readme": "https://goo.gl/8D4cCN",
"https://github.com/alecxe/eslint-plugin-protractor/blob/head/docs/rules/use-first-last.md#readme": "https://goo.gl/yvNPrb",
"https://github.com/alecxe/eslint-plugin-protractor/blob/head/docs/rules/use-promise-all.md#readme": "https://goo.gl/iiewtq",
"https://github.com/alecxe/eslint-plugin-protractor/blob/head/docs/rules/use-simple-repeaters.md#readme": "https://goo.gl/1msDpJ",
"https://github.com/alecxe/eslint-plugin-protractor/blob/head/docs/rules/valid-by-id.md#readme": "https://goo.gl/wZNqKi",
"https://github.com/alecxe/eslint-plugin-protractor/blob/head/docs/rules/valid-by-tagname.md#readme": "https://goo.gl/7FgP6z",
"https://github.com/alecxe/eslint-plugin-protractor/blob/head/docs/rules/valid-locator-type.md#readme": "https://goo.gl/nbz6fy",
"https://github.com/alexbird/eslint-plugin-jsxspacing/blob/head/docs/rules/jsx-prop-columns.md#readme": "https://goo.gl/i48HiH",
"https://github.com/alexmost/eslint-plugin-deprecate/blob/head/docs/rules/function.md#readme": "https://goo.gl/K3FSB5",
"https://github.com/alexmost/eslint-plugin-deprecate/blob/head/docs/rules/import.md#readme": "https://goo.gl/X6wwNU",
"https://github.com/alexmost/eslint-plugin-deprecate/blob/head/docs/rules/member-expression.md#readme": "https://goo.gl/8kq4NV",
"https://github.com/appcelerator/eslint-plugin-alloy/blob/head/docs/rules/no-unused-vars.md#readme": "https://goo.gl/Cw9goQ",
"https://github.com/apshenkin/eslint-plugin-codeceptjs/blob/head/docs/rules/no-data-only.md#readme": "https://goo.gl/qiDj7M",
"https://github.com/apshenkin/eslint-plugin-codeceptjs/blob/head/docs/rules/no-pause.md#readme": "https://goo.gl/EZRYri",
"https://github.com/apshenkin/eslint-plugin-codeceptjs/blob/head/docs/rules/no-scenario-only.md#readme": "https://goo.gl/gvMWQ9",
"https://github.com/atabel/eslint-plugin-tape/blob/head/docs/rules/assertion-message.md#readme": "https://goo.gl/fbe2cr",
"https://github.com/atabel/eslint-plugin-tape/blob/head/docs/rules/max-asserts.md#readme": "https://goo.gl/ojnWLC",
"https://github.com/atabel/eslint-plugin-tape/blob/head/docs/rules/no-identical-title.md#readme": "https://goo.gl/xcdnqb",
"https://github.com/atabel/eslint-plugin-tape/blob/head/docs/rules/no-ignored-test-files.md#readme": "https://goo.gl/f4XyDp",
"https://github.com/atabel/eslint-plugin-tape/blob/head/docs/rules/no-only-test.md#readme": "https://goo.gl/skBAEW",
"https://github.com/atabel/eslint-plugin-tape/blob/head/docs/rules/no-skip-assert.md#readme": "https://goo.gl/937Dr8",
"https://github.com/atabel/eslint-plugin-tape/blob/head/docs/rules/no-skip-test.md#readme": "https://goo.gl/AVx9PD",
"https://github.com/atabel/eslint-plugin-tape/blob/head/docs/rules/no-statement-after-end.md#readme": "https://goo.gl/HcgSb2",
"https://github.com/atabel/eslint-plugin-tape/blob/head/docs/rules/no-unknown-modifiers.md#readme": "https://goo.gl/3duMQ3",
"https://github.com/atabel/eslint-plugin-tape/blob/head/docs/rules/test-ended.md#readme": "https://goo.gl/MJGZ6x",
"https://github.com/atabel/eslint-plugin-tape/blob/head/docs/rules/test-title.md#readme": "https://goo.gl/hS1XgM",
"https://github.com/atabel/eslint-plugin-tape/blob/head/docs/rules/use-t-well.md#readme": "https://goo.gl/rv4bQm",
"https://github.com/atabel/eslint-plugin-tape/blob/head/docs/rules/use-t.md#readme": "https://goo.gl/H3ggWq",
"https://github.com/atabel/eslint-plugin-tape/blob/head/docs/rules/use-test.md#readme": "https://goo.gl/kh8GN7",
"https://github.com/automattic/eslint-plugin-wpcalypso/blob/head/docs/rules/i18n-ellipsis.md#readme": "https://goo.gl/GK48Nn",
"https://github.com/automattic/eslint-plugin-wpcalypso/blob/head/docs/rules/i18n-mismatched-placeholders.md#readme": "https://goo.gl/hKLfgJ",
"https://github.com/automattic/eslint-plugin-wpcalypso/blob/head/docs/rules/i18n-named-placeholders.md#readme": "https://goo.gl/UiCCML",
"https://github.com/automattic/eslint-plugin-wpcalypso/blob/head/docs/rules/i18n-no-collapsible-whitespace.md#readme": "https://goo.gl/TvrUDM",
"https://github.com/automattic/eslint-plugin-wpcalypso/blob/head/docs/rules/i18n-no-placeholders-only.md#readme": "https://goo.gl/1LzC1v",
"https://github.com/automattic/eslint-plugin-wpcalypso/blob/head/docs/rules/i18n-no-this-translate.md#readme": "https://goo.gl/1RCHyn",
"https://github.com/automattic/eslint-plugin-wpcalypso/blob/head/docs/rules/i18n-no-variables.md#readme": "https://goo.gl/TSpz6L",
"https://github.com/automattic/eslint-plugin-wpcalypso/blob/head/docs/rules/import-docblock.md#readme": "https://goo.gl/MvUMiw",
"https://github.com/automattic/eslint-plugin-wpcalypso/blob/head/docs/rules/import-no-redux-combine-reducers.md#readme": "https://goo.gl/745xNQ",
"https://github.com/automattic/eslint-plugin-wpcalypso/blob/head/docs/rules/jsx-classname-namespace.md#readme": "https://goo.gl/9YLBvx",
"https://github.com/automattic/eslint-plugin-wpcalypso/blob/head/docs/rules/jsx-gridicon-size.md#readme": "https://goo.gl/4fxG62",
"https://github.com/automattic/eslint-plugin-wpcalypso/blob/head/docs/rules/post-message-no-wildcard-targets.md#readme": "https://goo.gl/D7tKcB",
"https://github.com/automattic/eslint-plugin-wpcalypso/blob/head/docs/rules/redux-no-bound-selectors.md#readme": "https://goo.gl/rRPfuC",
"https://github.com/avajs/eslint-plugin-ava/blob/head/docs/rules/assertion-arguments.md#readme": "https://goo.gl/MCTqJy",
"https://github.com/avajs/eslint-plugin-ava/blob/head/docs/rules/max-asserts.md#readme": "https://goo.gl/BZ8mgd",
"https://github.com/avajs/eslint-plugin-ava/blob/head/docs/rules/no-async-fn-without-await.md#readme": "https://goo.gl/ZVBjqF",
"https://github.com/avajs/eslint-plugin-ava/blob/head/docs/rules/no-cb-test.md#readme": "https://goo.gl/uuUfxx",
"https://github.com/avajs/eslint-plugin-ava/blob/head/docs/rules/no-duplicate-modifiers.md#readme": "https://goo.gl/Xy61LT",
"https://github.com/avajs/eslint-plugin-ava/blob/head/docs/rules/no-identical-title.md#readme": "https://goo.gl/gHC52c",
"https://github.com/avajs/eslint-plugin-ava/blob/head/docs/rules/no-ignored-test-files.md#readme": "https://goo.gl/RrSTmb",
"https://github.com/avajs/eslint-plugin-ava/blob/head/docs/rules/no-import-test-files.md#readme": "https://goo.gl/ybBW1u",
"https://github.com/avajs/eslint-plugin-ava/blob/head/docs/rules/no-invalid-end.md#readme": "https://goo.gl/f4fZrh",
"https://github.com/avajs/eslint-plugin-ava/blob/head/docs/rules/no-nested-tests.md#readme": "https://goo.gl/ggYE16",
"https://github.com/avajs/eslint-plugin-ava/blob/head/docs/rules/no-only-test.md#readme": "https://goo.gl/ZcCwdW",
"https://github.com/avajs/eslint-plugin-ava/blob/head/docs/rules/no-skip-assert.md#readme": "https://goo.gl/veCdfA",
"https://github.com/avajs/eslint-plugin-ava/blob/head/docs/rules/no-skip-test.md#readme": "https://goo.gl/TpaVBo",
"https://github.com/avajs/eslint-plugin-ava/blob/head/docs/rules/no-statement-after-end.md#readme": "https://goo.gl/xuMkX2",
"https://github.com/avajs/eslint-plugin-ava/blob/head/docs/rules/no-todo-implementation.md#readme": "https://goo.gl/Qry6f7",
"https://github.com/avajs/eslint-plugin-ava/blob/head/docs/rules/no-todo-test.md#readme": "https://goo.gl/8cj7pD",
"https://github.com/avajs/eslint-plugin-ava/blob/head/docs/rules/no-unknown-modifiers.md#readme": "https://goo.gl/GdHdtu",
"https://github.com/avajs/eslint-plugin-ava/blob/head/docs/rules/prefer-async-await.md#readme": "https://goo.gl/eU8owg",
"https://github.com/avajs/eslint-plugin-ava/blob/head/docs/rules/prefer-power-assert.md#readme": "https://goo.gl/6C3qBh",
"https://github.com/avajs/eslint-plugin-ava/blob/head/docs/rules/test-ended.md#readme": "https://goo.gl/VLmVr4",
"https://github.com/avajs/eslint-plugin-ava/blob/head/docs/rules/test-title.md#readme": "https://goo.gl/ZD791F",
"https://github.com/avajs/eslint-plugin-ava/blob/head/docs/rules/use-t-well.md#readme": "https://goo.gl/PciQMu",
"https://github.com/avajs/eslint-plugin-ava/blob/head/docs/rules/use-t.md#readme": "https://goo.gl/XxtYGP",
"https://github.com/avajs/eslint-plugin-ava/blob/head/docs/rules/use-test.md#readme": "https://goo.gl/6z4VjF",
"https://github.com/avajs/eslint-plugin-ava/blob/head/docs/rules/use-true-false.md#readme": "https://goo.gl/AqNXxz",
"https://github.com/bamlab/eslint-plugin-bam/blob/head/docs/rules/no-react-unbound.md#readme": "https://goo.gl/6ZBVQ7",
"https://github.com/bamlab/eslint-plugin-bam/blob/head/docs/rules/no-react-uncast-to-boolean.md#readme": "https://goo.gl/z14zAE",
"https://github.com/banno/eslint-plugin-banno/blob/head/docs/rules/no-for-const.md#readme": "https://goo.gl/FqpVkW",
"https://github.com/benmosher/eslint-plugin-import/blob/head/docs/rules/default.md#readme": "https://goo.gl/pe25wS",
"https://github.com/benmosher/eslint-plugin-import/blob/head/docs/rules/dynamic-import-chunkname.md#readme": "https://goo.gl/1YZBNi",
"https://github.com/benmosher/eslint-plugin-import/blob/head/docs/rules/export.md#readme": "https://goo.gl/qjpLuB",
"https://github.com/benmosher/eslint-plugin-import/blob/head/docs/rules/exports-last.md#readme": "https://goo.gl/GqVaJt",
"https://github.com/benmosher/eslint-plugin-import/blob/head/docs/rules/extensions.md#readme": "https://goo.gl/BwY9j4",
"https://github.com/benmosher/eslint-plugin-import/blob/head/docs/rules/first.md#readme": "https://goo.gl/KMwtL4",
"https://github.com/benmosher/eslint-plugin-import/blob/head/docs/rules/group-exports.md#readme": "https://goo.gl/fD8wrd",
"https://github.com/benmosher/eslint-plugin-import/blob/head/docs/rules/max-dependencies.md#readme": "https://goo.gl/qJi4Ht",
"https://github.com/benmosher/eslint-plugin-import/blob/head/docs/rules/named.md#readme": "https://goo.gl/aKZ27q",
"https://github.com/benmosher/eslint-plugin-import/blob/head/docs/rules/namespace.md#readme": "https://goo.gl/Rz7koG",
"https://github.com/benmosher/eslint-plugin-import/blob/head/docs/rules/newline-after-import.md#readme": "https://goo.gl/y6NVPa",
"https://github.com/benmosher/eslint-plugin-import/blob/head/docs/rules/no-absolute-path.md#readme": "https://goo.gl/xk4q7j",
"https://github.com/benmosher/eslint-plugin-import/blob/head/docs/rules/no-amd.md#readme": "https://goo.gl/rQFdiX",
"https://github.com/benmosher/eslint-plugin-import/blob/head/docs/rules/no-anonymous-default-export.md#readme": "https://goo.gl/E2asxP",
"https://github.com/benmosher/eslint-plugin-import/blob/head/docs/rules/no-commonjs.md#readme": "https://goo.gl/7MuEu1",
"https://github.com/benmosher/eslint-plugin-import/blob/head/docs/rules/no-cycle.md#readme": "https://goo.gl/7FYPD7",
"https://github.com/benmosher/eslint-plugin-import/blob/head/docs/rules/no-default-export.md#readme": "https://goo.gl/s2Zx3Z",
"https://github.com/benmosher/eslint-plugin-import/blob/head/docs/rules/no-deprecated.md#readme": "https://goo.gl/jEFcff",
"https://github.com/benmosher/eslint-plugin-import/blob/head/docs/rules/no-duplicates.md#readme": "https://goo.gl/5X3gNK",
"https://github.com/benmosher/eslint-plugin-import/blob/head/docs/rules/no-dynamic-require.md#readme": "https://goo.gl/P183Py",
"https://github.com/benmosher/eslint-plugin-import/blob/head/docs/rules/no-extraneous-dependencies.md#readme": "https://goo.gl/BYtrGd",
"https://github.com/benmosher/eslint-plugin-import/blob/head/docs/rules/no-internal-modules.md#readme": "https://goo.gl/t64ETD",
"https://github.com/benmosher/eslint-plugin-import/blob/head/docs/rules/no-mutable-exports.md#readme": "https://goo.gl/y8b8qT",
"https://github.com/benmosher/eslint-plugin-import/blob/head/docs/rules/no-named-as-default-member.md#readme": "https://goo.gl/4vaisU",
"https://github.com/benmosher/eslint-plugin-import/blob/head/docs/rules/no-named-as-default.md#readme": "https://goo.gl/kFCfA8",
"https://github.com/benmosher/eslint-plugin-import/blob/head/docs/rules/no-named-default.md#readme": "https://goo.gl/G18RMg",
"https://github.com/benmosher/eslint-plugin-import/blob/head/docs/rules/no-named-export.md#readme": "https://goo.gl/jZvDRn",
"https://github.com/benmosher/eslint-plugin-import/blob/head/docs/rules/no-namespace.md#readme": "https://goo.gl/6tCjey",
"https://github.com/benmosher/eslint-plugin-import/blob/head/docs/rules/no-nodejs-modules.md#readme": "https://goo.gl/k54ujt",
"https://github.com/benmosher/eslint-plugin-import/blob/head/docs/rules/no-relative-parent-imports.md#readme": "https://goo.gl/Zwortp",
"https://github.com/benmosher/eslint-plugin-import/blob/head/docs/rules/no-restricted-paths.md#readme": "https://goo.gl/BLdTtw",
"https://github.com/benmosher/eslint-plugin-import/blob/head/docs/rules/no-self-import.md#readme": "https://goo.gl/3hd2A9",
"https://github.com/benmosher/eslint-plugin-import/blob/head/docs/rules/no-unassigned-import.md#readme": "https://goo.gl/QpdT41",
"https://github.com/benmosher/eslint-plugin-import/blob/head/docs/rules/no-unresolved.md#readme": "https://goo.gl/86cGcD",
"https://github.com/benmosher/eslint-plugin-import/blob/head/docs/rules/no-useless-path-segments.md#readme": "https://goo.gl/dsWDbT",
"https://github.com/benmosher/eslint-plugin-import/blob/head/docs/rules/no-webpack-loader-syntax.md#readme": "https://goo.gl/hszbGe",
"https://github.com/benmosher/eslint-plugin-import/blob/head/docs/rules/order.md#readme": "https://goo.gl/EXfM6N",
"https://github.com/benmosher/eslint-plugin-import/blob/head/docs/rules/prefer-default-export.md#readme": "https://goo.gl/AiK1tM",
"https://github.com/benmosher/eslint-plugin-import/blob/head/docs/rules/unambiguous.md#readme": "https://goo.gl/3UZhVD",
"https://github.com/betaorbust/eslint-plugin-pocket-fluff/blob/head/docs/rules/no-dead-code.md#readme": "https://goo.gl/78obLN",
"https://github.com/betaorbust/eslint-plugin-pocket-fluff/blob/head/docs/rules/no-jsx-spread.md#readme": "https://goo.gl/sCmzgK",
"https://github.com/betaorbust/eslint-plugin-pocket-fluff/blob/head/docs/rules/no-reassigned-consts.md#readme": "https://goo.gl/5JL5tw",
"https://github.com/boiyaa/eslint-plugin-no-return/blob/head/docs/rules/no-return.md#readme": "https://goo.gl/mFSeVA",
"https://github.com/bradzacher/eslint-plugin-typescript/blob/head/docs/rules/adjacent-overload-signatures.md#readme": "https://goo.gl/VD3ekM",
"https://github.com/bradzacher/eslint-plugin-typescript/blob/head/docs/rules/array-type.md#readme": "https://goo.gl/5DXiT1",
"https://github.com/bradzacher/eslint-plugin-typescript/blob/head/docs/rules/ban-types.md#readme": "https://goo.gl/ymxPTa",
"https://github.com/bradzacher/eslint-plugin-typescript/blob/head/docs/rules/camelcase.md#readme": "https://goo.gl/Kv79NW",
"https://github.com/bradzacher/eslint-plugin-typescript/blob/head/docs/rules/class-name-casing.md#readme": "https://goo.gl/3aMvQP",
"https://github.com/bradzacher/eslint-plugin-typescript/blob/head/docs/rules/explicit-function-return-type.md#readme": "https://goo.gl/E34cN1",
"https://github.com/bradzacher/eslint-plugin-typescript/blob/head/docs/rules/explicit-member-accessibility.md#readme": "https://goo.gl/c5e9kp",
"https://github.com/bradzacher/eslint-plugin-typescript/blob/head/docs/rules/generic-type-naming.md#readme": "https://goo.gl/SXBEQc",
"https://github.com/bradzacher/eslint-plugin-typescript/blob/head/docs/rules/indent.md#readme": "https://goo.gl/dkQPf2",
"https://github.com/bradzacher/eslint-plugin-typescript/blob/head/docs/rules/interface-name-prefix.md#readme": "https://goo.gl/ZJ1nrN",
"https://github.com/bradzacher/eslint-plugin-typescript/blob/head/docs/rules/member-delimiter-style.md#readme": "https://goo.gl/1LEnmK",
"https://github.com/bradzacher/eslint-plugin-typescript/blob/head/docs/rules/member-naming.md#readme": "https://goo.gl/b7PEXX",
"https://github.com/bradzacher/eslint-plugin-typescript/blob/head/docs/rules/member-ordering.md#readme": "https://goo.gl/HXp5bV",
"https://github.com/bradzacher/eslint-plugin-typescript/blob/head/docs/rules/no-angle-bracket-type-assertion.md#readme": "https://goo.gl/e1TxM3",
"https://github.com/bradzacher/eslint-plugin-typescript/blob/head/docs/rules/no-array-constructor.md#readme": "https://goo.gl/VkbRtF",
"https://github.com/bradzacher/eslint-plugin-typescript/blob/head/docs/rules/no-empty-interface.md#readme": "https://goo.gl/pXsdHZ",
"https://github.com/bradzacher/eslint-plugin-typescript/blob/head/docs/rules/no-explicit-any.md#readme": "https://goo.gl/qz6pkh",
"https://github.com/bradzacher/eslint-plugin-typescript/blob/head/docs/rules/no-extraneous-class.md#readme": "https://goo.gl/Lr6LXF",
"https://github.com/bradzacher/eslint-plugin-typescript/blob/head/docs/rules/no-inferrable-types.md#readme": "https://goo.gl/5SWpd5",
"https://github.com/bradzacher/eslint-plugin-typescript/blob/head/docs/rules/no-misused-new.md#readme": "https://goo.gl/qm2nQV",
"https://github.com/bradzacher/eslint-plugin-typescript/blob/head/docs/rules/no-namespace.md#readme": "https://goo.gl/nyfck2",
"https://github.com/bradzacher/eslint-plugin-typescript/blob/head/docs/rules/no-non-null-assertion.md#readme": "https://goo.gl/ss5jkg",
"https://github.com/bradzacher/eslint-plugin-typescript/blob/head/docs/rules/no-object-literal-type-assertion.md#readme": "https://goo.gl/mF1FsM",
"https://github.com/bradzacher/eslint-plugin-typescript/blob/head/docs/rules/no-parameter-properties.md#readme": "https://goo.gl/M2oA1E",
"https://github.com/bradzacher/eslint-plugin-typescript/blob/head/docs/rules/no-this-alias.md#readme": "https://goo.gl/bgqjnA",
"https://github.com/bradzacher/eslint-plugin-typescript/blob/head/docs/rules/no-triple-slash-reference.md#readme": "https://goo.gl/z9K5t7",
"https://github.com/bradzacher/eslint-plugin-typescript/blob/head/docs/rules/no-type-alias.md#readme": "https://goo.gl/TuqYGg",
"https://github.com/bradzacher/eslint-plugin-typescript/blob/head/docs/rules/no-unused-vars.md#readme": "https://goo.gl/RgzQkX",
"https://github.com/bradzacher/eslint-plugin-typescript/blob/head/docs/rules/no-use-before-define.md#readme": "https://goo.gl/4yQp8W",
"https://github.com/bradzacher/eslint-plugin-typescript/blob/head/docs/rules/no-var-requires.md#readme": "https://goo.gl/PdKPaH",
"https://github.com/bradzacher/eslint-plugin-typescript/blob/head/docs/rules/prefer-interface.md#readme": "https://goo.gl/8AKrnK",
"https://github.com/bradzacher/eslint-plugin-typescript/blob/head/docs/rules/prefer-namespace-keyword.md#readme": "https://goo.gl/8Eevph",
"https://github.com/bradzacher/eslint-plugin-typescript/blob/head/docs/rules/type-annotation-spacing.md#readme": "https://goo.gl/trkvTq",
"https://github.com/brainmaestro/eslint-plugin-optimize-regex/blob/head/docs/rules/optimize-regex.md#readme": "https://goo.gl/QvrHZm",
"https://github.com/brendenpalmer/eslint-plugin-disable-features/blob/head/docs/rules/disable-async-await.md#readme": "https://goo.gl/uHKoER",
"https://github.com/brendenpalmer/eslint-plugin-disable-features/blob/head/docs/rules/disable-generator-functions.md#readme": "https://goo.gl/KqRZQg",
"https://github.com/brendenpalmer/eslint-plugin-disable-features/blob/head/docs/rules/disable-typeof-checks.md#readme": "https://goo.gl/CVC9Xb",
"https://github.com/chejen/eslint-plugin-i18n/blob/head/docs/rules/no-chinese-character.md#readme": "https://goo.gl/rgp4gK",
"https://github.com/chejen/eslint-plugin-i18n/blob/head/docs/rules/no-greek-character.md#readme": "https://goo.gl/9T4Lb3",
"https://github.com/chejen/eslint-plugin-i18n/blob/head/docs/rules/no-japanese-character.md#readme": "https://goo.gl/JTz6N2",
"https://github.com/chejen/eslint-plugin-i18n/blob/head/docs/rules/no-korean-character.md#readme": "https://goo.gl/eba1ZP",
"https://github.com/chejen/eslint-plugin-i18n/blob/head/docs/rules/no-russian-character.md#readme": "https://goo.gl/WkKRsN",
"https://github.com/chejen/eslint-plugin-i18n/blob/head/docs/rules/no-thai-character.md#readme": "https://goo.gl/4eo8Uy",
"https://github.com/csslint/csslint/wiki/beware-of-box-model-size": "https://goo.gl/QOkn2a",
"https://github.com/csslint/csslint/wiki/bulletproof-font-face": "https://goo.gl/nxwWxc",
"https://github.com/csslint/csslint/wiki/disallow-%21important": "https://goo.gl/80QxPF",
"https://github.com/csslint/csslint/wiki/disallow-%40import": "https://goo.gl/UQ1LZ1",
"https://github.com/csslint/csslint/wiki/disallow-adjoining-classes": "https://goo.gl/GqbM13",
"https://github.com/csslint/csslint/wiki/disallow-box-sizing": "https://goo.gl/bZFEXU",
"https://github.com/csslint/csslint/wiki/disallow-duplicate-background-images": "https://goo.gl/FrQXdm",
"https://github.com/csslint/csslint/wiki/disallow-duplicate-properties": "https://goo.gl/xl3qeu",
"https://github.com/csslint/csslint/wiki/disallow-empty-rules": "https://goo.gl/lTH0RR",
"https://github.com/csslint/csslint/wiki/disallow-ids-in-selectors": "https://goo.gl/77PqFu",
"https://github.com/csslint/csslint/wiki/disallow-negative-text-indent": "https://goo.gl/csMxcl",
"https://github.com/csslint/csslint/wiki/disallow-non-alphabetical": "https://goo.gl/OjRR3r",
"https://github.com/csslint/csslint/wiki/disallow-outline%3anone": "https://goo.gl/PFYNRR",
"https://github.com/csslint/csslint/wiki/disallow-overqualified-elements": "https://goo.gl/sPUcHP",
"https://github.com/csslint/csslint/wiki/disallow-qualified-headings": "https://goo.gl/u8jd92",
"https://github.com/csslint/csslint/wiki/disallow-selectors-that-look-like-regular-expressions": "https://goo.gl/2lWLmT",
"https://github.com/csslint/csslint/wiki/disallow-star-hack": "https://goo.gl/ANzxUE",
"https://github.com/csslint/csslint/wiki/disallow-too-many-floats": "https://goo.gl/yMVqMR",
"https://github.com/csslint/csslint/wiki/disallow-underscore-hack": "https://goo.gl/U2wjDL",
"https://github.com/csslint/csslint/wiki/disallow-units-for-zero-values": "https://goo.gl/Tv3NgI",
"https://github.com/csslint/csslint/wiki/disallow-universal-selector": "https://goo.gl/jJrGhj",
"https://github.com/csslint/csslint/wiki/disallow-unqualified-attribute-selectors": "https://goo.gl/TSVO2u",
"https://github.com/csslint/csslint/wiki/don%27t-use-too-many-font-size-declarations": "https://goo.gl/E8tGy0",
"https://github.com/csslint/csslint/wiki/don%27t-use-too-many-web-fonts": "https://goo.gl/qy5zEv",
"https://github.com/csslint/csslint/wiki/headings-should-only-be-defined-once": "https://goo.gl/wsfGcv",
"https://github.com/csslint/csslint/wiki/require-all-gradient-definitions": "https://goo.gl/YS9U1R",
"https://github.com/csslint/csslint/wiki/require-compatible-vendor-prefixes": "https://goo.gl/n4BHoj",
"https://github.com/csslint/csslint/wiki/require-fallback-colors": "https://goo.gl/fwR0G8",
"https://github.com/csslint/csslint/wiki/require-properties-appropriate-for-display": "https://goo.gl/8RO9mq",
"https://github.com/csslint/csslint/wiki/require-shorthand-properties": "https://goo.gl/Bfpmco",
"https://github.com/csslint/csslint/wiki/require-standard-property-with-vendor-prefix": "https://goo.gl/ArArXO",
"https://github.com/csslint/csslint/wiki/require-use-of-known-properties": "https://goo.gl/xbD7ut",
"https://github.com/cvazac/eslint-plugin-react-perf/blob/head/docs/rules/jsx-no-jsx-as-prop.md#readme": "https://goo.gl/Hg6EBj",
"https://github.com/cvazac/eslint-plugin-react-perf/blob/head/docs/rules/jsx-no-new-array-as-prop.md#readme": "https://goo.gl/ZYNyNv",
"https://github.com/cvazac/eslint-plugin-react-perf/blob/head/docs/rules/jsx-no-new-function-as-prop.md#readme": "https://goo.gl/5auPKr",
"https://github.com/cvazac/eslint-plugin-react-perf/blob/head/docs/rules/jsx-no-new-object-as-prop.md#readme": "https://goo.gl/N2L1Xk",
"https://github.com/cvisco/eslint-plugin-requirejs/blob/head/docs/rules/amd-function-arity.md#readme": "https://goo.gl/hFDJzN",
"https://github.com/cvisco/eslint-plugin-requirejs/blob/head/docs/rules/enforce-define.md#readme": "https://goo.gl/LnE1Mx",
"https://github.com/cvisco/eslint-plugin-requirejs/blob/head/docs/rules/no-amd-define.md#readme": "https://goo.gl/h9KQ3b",
"https://github.com/cvisco/eslint-plugin-requirejs/blob/head/docs/rules/no-assign-exports.md#readme": "https://goo.gl/HwEK4m",
"https://github.com/cvisco/eslint-plugin-requirejs/blob/head/docs/rules/no-assign-require.md#readme": "https://goo.gl/8bXDkb",
"https://github.com/cvisco/eslint-plugin-requirejs/blob/head/docs/rules/no-commonjs-exports.md#readme": "https://goo.gl/RZESwQ",
"https://github.com/cvisco/eslint-plugin-requirejs/blob/head/docs/rules/no-commonjs-module-exports.md#readme": "https://goo.gl/i56NQ9",
"https://github.com/cvisco/eslint-plugin-requirejs/blob/head/docs/rules/no-commonjs-return.md#readme": "https://goo.gl/fNviWj",
"https://github.com/cvisco/eslint-plugin-requirejs/blob/head/docs/rules/no-commonjs-wrapper.md#readme": "https://goo.gl/aEgWXa",
"https://github.com/cvisco/eslint-plugin-requirejs/blob/head/docs/rules/no-conditional-require.md#readme": "https://goo.gl/CENV87",
"https://github.com/cvisco/eslint-plugin-requirejs/blob/head/docs/rules/no-dynamic-require.md#readme": "https://goo.gl/3es9zy",
"https://github.com/cvisco/eslint-plugin-requirejs/blob/head/docs/rules/no-function-define.md#readme": "https://goo.gl/u2senS",
"https://github.com/cvisco/eslint-plugin-requirejs/blob/head/docs/rules/no-invalid-define.md#readme": "https://goo.gl/gNBWuS",
"https://github.com/cvisco/eslint-plugin-requirejs/blob/head/docs/rules/no-invalid-require.md#readme": "https://goo.gl/PLDBDB",
"https://github.com/cvisco/eslint-plugin-requirejs/blob/head/docs/rules/no-js-extension.md#readme": "https://goo.gl/BpevqT",
"https://github.com/cvisco/eslint-plugin-requirejs/blob/head/docs/rules/no-multiple-define.md#readme": "https://goo.gl/jh6LPL",
"https://github.com/cvisco/eslint-plugin-requirejs/blob/head/docs/rules/no-named-define.md#readme": "https://goo.gl/fcnVid",
"https://github.com/cvisco/eslint-plugin-requirejs/blob/head/docs/rules/no-object-define.md#readme": "https://goo.gl/tFdTYj",
"https://github.com/cvisco/eslint-plugin-requirejs/blob/head/docs/rules/no-require-tourl.md#readme": "https://goo.gl/bM2tUe",
"https://github.com/cvisco/eslint-plugin-requirejs/blob/head/docs/rules/one-dependency-per-line.md#readme": "https://goo.gl/mc2hRb",
"https://github.com/cvisco/eslint-plugin-requirejs/blob/head/docs/rules/sort-amd-paths.md#readme": "https://goo.gl/1mfStp",
"https://github.com/cypress-io/eslint-plugin-cypress/blob/head/docs/rules/no-assigning-return-values.md#readme": "https://goo.gl/uAqxh7",
"https://github.com/cypress-io/eslint-plugin-cypress/blob/head/docs/rules/no-unnecessary-waiting.md#readme": "https://goo.gl/aP4LXT",
"https://github.com/daniel-lundin/eslint-plugin-mocha/blob/head/docs/rules/handle-done-callback.md#readme": "https://goo.gl/KkRVYm",
"https://github.com/daniel-lundin/eslint-plugin-mocha/blob/head/docs/rules/max-top-level-suites.md#readme": "https://goo.gl/veevbR",
"https://github.com/daniel-lundin/eslint-plugin-mocha/blob/head/docs/rules/no-exclusive-tests.md#readme": "https://goo.gl/4hDY6T",
"https://github.com/daniel-lundin/eslint-plugin-mocha/blob/head/docs/rules/no-global-tests.md#readme": "https://goo.gl/ZWJtCE",