forked from otwcode/otwarchive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.rubocop_todo_erb.yml
1495 lines (1423 loc) · 69.2 KB
/
.rubocop_todo_erb.yml
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
# This file is similar to .rubocop_todo.yml, but specifically for ERB files.
# Since erb_lint does not have an option to make this file automatically,
# it was semi-manually generated. The point is also similar to the regular todo file.
Layout/ArgumentAlignment:
Exclude:
- 'app/views/prompts/_prompt_form_tag_options.html.erb'
- 'app/views/orphans/_orphan_series.html.erb'
- 'app/views/skins/_form.html.erb'
- 'app/views/collection_profile/show.html.erb'
- 'app/views/tags/_search_form.html.erb'
- 'app/views/collections/_sidebar.html.erb'
- 'app/views/tags/edit.html.erb'
- 'app/views/works/_collection_filters.html.erb'
- 'app/views/potential_matches/_no_potential_recipients.html.erb'
- 'app/views/works/edit_multiple.html.erb'
- 'app/views/challenge_assignments/confirm_purge.html.erb'
- 'app/views/works/_work_form_tags.html.erb'
- 'app/views/favorite_tags/_form.html.erb'
- 'app/views/known_issues/_known_issues_form.html.erb'
- 'app/views/comment_mailer/_comment_notification_footer_for_other.html.erb'
- 'app/views/potential_matches/show.html.erb'
- 'app/views/owned_tag_sets/_internal_tag_set_fields.html.erb'
- 'app/views/challenge_assignments/_maintainer_index.html.erb'
- 'app/views/chapters/manage.html.erb'
- 'app/views/external_authors/index.html.erb'
- 'app/views/users/sessions/_passwd_small.html.erb'
- 'app/views/admin_posts/show.html.erb'
- 'app/views/comments/_comment_form.html.erb'
- 'app/views/invite_requests/manage.html.erb'
- 'app/views/admin/passwords/edit.html.erb'
- 'app/views/prompts/_prompt_controls.html.erb'
- 'app/views/chapters/edit.html.erb'
- 'app/views/admin/admin_users/confirm_delete_user_creations.html.erb'
- 'app/views/series/show.html.erb'
- 'app/views/works/_standard_form.html.erb'
- 'app/views/challenge/shared/_challenge_form_delete.html.erb'
- 'app/views/challenge/shared/_challenge_form_confirm_delete.html.erb'
- 'app/views/collection_participants/_participant_form.html.erb'
- 'app/views/external_works/edit.html.erb'
- 'app/views/works/_work_form_associations_language.html.erb'
- 'app/views/admin/_admin_options.html.erb'
- 'app/views/prompts/_prompt_navigation.html.erb'
- 'app/views/home/first_login_help.html.erb'
- 'app/views/abuse_reports/new.html.erb'
- 'app/views/challenge_signups/_signup_controls.html.erb'
- 'app/views/bookmarks/_bookmark_blurb.html.erb'
- 'app/views/bookmarks/_filters.html.erb'
- 'app/views/tag_wranglers/index.html.erb'
- 'app/views/home/_intro_module.html.erb'
- 'app/views/comment_mailer/_comment_notification_footer_for_tag.html.erb'
- 'app/views/external_authors/_external_author_blurb.html.erb'
- 'app/views/owned_tag_sets/_navigation.html.erb'
- 'app/views/potential_matches/_assignment_with_request.html.erb'
- 'app/views/collections/_collection_blurb.html.erb'
- 'app/views/works/_filters.html.erb'
- 'app/views/users/edit.html.erb'
- 'app/views/users/change_password.html.erb'
- 'app/views/challenge_assignments/show.html.erb'
- 'app/views/challenge_signups/_signup_form.html.erb'
- 'app/views/bookmarks/_bookmarkable_blurb.html.erb'
- 'app/views/challenge_assignments/_assignment_blurb.html.erb'
- 'app/views/collections/_filters.html.erb'
- 'app/views/series/_series_module.html.erb'
- 'app/views/home/_news_module.html.erb'
- 'app/views/admin_posts/_admin_post_form.html.erb'
- 'app/views/invite_requests/_index_closed.html.erb'
- 'app/views/skins/_skin_actions.html.erb'
- 'app/views/tag_set_nominations/_tag_nominations_by_fandom.html.erb'
- 'app/views/users/passwords/edit.html.erb'
- 'app/views/admin/_admin_nav.html.erb'
- 'app/views/challenge_signups/summary.html.erb'
- 'app/views/user_mailer/abuse_report.html.erb'
- 'app/views/comments/_comment_actions.html.erb'
- 'app/views/user_mailer/signup_notification.html.erb'
- 'app/views/tag_set_nominations/show.html.erb'
- 'app/views/bookmarks/_external_work_fields.html.erb'
- 'app/views/users/change_username.html.erb'
- 'app/views/archive_faqs/_question_answer_fields.html.erb'
- 'app/views/invitations/manage.html.erb'
- 'app/views/users/registrations/_passwd.html.erb'
- 'app/views/bookmarks/_bookmark_form.html.erb'
- 'app/views/fandoms/unassigned.html.erb'
- 'app/views/admin/blacklisted_emails/index.html.erb'
- 'app/views/subscriptions/_form.html.erb'
- 'app/views/subscriptions/index.html.erb'
- 'app/views/admin/api/_api_key_form.html.erb'
- 'app/views/works/_work_header_navigation.html.erb'
- 'app/views/collections/_collection_form_delete.html.erb'
- 'app/views/chapters/preview.html.erb'
- 'app/views/owned_tag_sets/show_options.html.erb'
- 'app/views/collections/_header.html.erb'
- 'app/views/challenge/shared/_challenge_navigation_user.html.erb'
- 'app/views/potential_matches/_match_navigation.html.erb'
- 'app/views/comments/_single_comment.html.erb'
- 'app/views/bookmarks/_search_form.html.erb'
- 'app/views/potential_matches/_no_potential_givers.html.erb'
- 'app/views/invite_requests/_index_open.html.erb'
- 'app/views/user_mailer/delete_work_notification.html.erb'
- 'app/views/works/_search_form.html.erb'
- 'app/views/admin_posts/index.html.erb'
- 'app/views/works/new.html.erb'
- 'app/views/works/new_import.html.erb'
Layout/BlockEndNewline:
Exclude:
- 'app/views/downloads/_download_preface.html.erb'
- 'app/views/downloads/_download_afterword.html.erb'
- 'app/views/potential_matches/_list_recipients_for_pseud.html.erb'
Layout/ClosingParenthesisIndentation:
Exclude:
- 'app/views/users/edit.html.erb'
- 'app/views/home/_intro_module.html.erb'
- 'app/views/invite_requests/_index_open.html.erb'
- 'app/views/challenge_signups/_signup_form.html.erb'
- 'app/views/users/show.html.erb'
- 'app/views/users/change_username.html.erb'
- 'app/views/invite_requests/_index_closed.html.erb'
- 'app/views/home/first_login_help.html.erb'
- 'app/views/users/delete_preview.html.erb'
Layout/CommentIndentation:
Exclude:
- 'app/views/challenge_requests/index.html.erb'
- 'app/views/skins/_skin_style_block.html.erb'
- 'app/views/challenge_claims/_unposted_claim_blurb.html.erb'
- 'app/views/skins/_skin_module.html.erb'
- 'app/views/inbox/_delete_form.html.erb'
- 'app/views/gifts/_gift_blurb.html.erb'
- 'app/views/prompts/_prompt_form_tag_options.html.erb'
- 'app/views/challenge_claims/_maintainer_index.html.erb'
- 'app/views/pseuds/_byline.html.erb'
- 'app/views/skins/_form.html.erb'
- 'app/views/inbox/_inbox_comment_contents.html.erb'
- 'app/views/layouts/application.html.erb'
- 'app/views/downloads/show.html.erb'
- 'app/views/works/_collection_filters.html.erb'
- 'app/views/tag_set_nominations/_review_individual_nom.html.erb'
- 'app/views/archive_faqs/_archive_faq_form.html.erb'
- 'app/views/bookmarks/index.html.erb'
- 'app/views/related_works/index.html.erb'
- 'app/views/favorite_tags/_form.html.erb'
- 'app/views/challenge/shared/_challenge_signups.html.erb'
- 'app/views/external_authors/_external_author_description.html.erb'
- 'app/views/owned_tag_sets/_show_tags_alpha_listbox.html.erb'
- 'app/views/admin/admin_users/_user_form.html.erb'
- 'app/views/owned_tag_sets/_internal_tag_set_fields.html.erb'
- 'app/views/users/sessions/_passwd_small.html.erb'
- 'app/views/collectibles/_collectible_form.html.erb'
- 'app/views/bookmarks/_bookmarks.html.erb'
- 'app/views/comments/_comment_form.html.erb'
- 'app/views/inbox/show.html.erb'
- 'app/views/prompts/_prompt_form.html.erb'
- 'app/views/admin_posts/_admin_post.html.erb'
- 'app/views/challenge_assignments/_maintainer_index_unfulfilled.html.erb'
- 'app/views/collection_items/_collection_item_form.html.erb'
- 'app/views/owned_tag_sets/_tag_set_associations_remove.html.erb'
- 'app/views/prompts/index.html.erb'
- 'app/views/prompts/_prompt_controls.html.erb'
- 'app/views/potential_matches/_list_recipients_for_pseud.html.erb'
- 'app/views/bookmarks/_bookmark_item_module.html.erb'
- 'app/views/inbox/_approve_button.html.erb'
- 'app/views/skins/_revert_skin_form.html.erb'
- 'app/views/prompts/show.html.erb'
- 'app/views/works/_work_abbreviated_list.html.erb'
- 'app/views/stats/index.html.erb'
- 'app/views/challenge/gift_exchange/_challenge_signups_summary.html.erb'
- 'app/views/works/_work_form_associations_language.html.erb'
- 'app/views/home/first_login_help.html.erb'
- 'app/views/owned_tag_sets/_show_tag_set_tags.html.erb'
- 'app/views/challenge_signups/_signup_controls.html.erb'
- 'app/views/bookmarks/_bookmark_blurb.html.erb'
- 'app/views/bookmarks/_filters.html.erb'
- 'app/views/collection_items/_item_fields.html.erb'
- 'app/views/external_authors/_external_author_blurb.html.erb'
- 'app/views/kudos/_kudos.html.erb'
- 'app/views/potential_matches/_assignment_with_request.html.erb'
- 'app/views/skins/_header.html.erb'
- 'app/views/challenge_signups/show.html.erb'
- 'app/views/inbox/_read_form.html.erb'
- 'app/views/tag_set_nominations/_review_fandoms.html.erb'
- 'app/views/skins/_skin_navigation.html.erb'
- 'app/views/collections/_collection_blurb.html.erb'
- 'app/views/works/_filters.html.erb'
- 'app/views/home/_tos.html.erb'
- 'app/views/owned_tag_sets/_tag_set_form.html.erb'
- 'app/views/challenge_assignments/show.html.erb'
- 'app/views/challenge_signups/_signup_form.html.erb'
- 'app/views/user_mailer/_work_info.html.erb'
- 'app/views/home/_inbox_module.html.erb'
- 'app/views/potential_matches/_assignments.html.erb'
- 'app/views/bookmarks/_bookmarkable_blurb.html.erb'
- 'app/views/works/_work_form_pseuds.html.erb'
- 'app/views/works/_work_module.html.erb'
- 'app/views/users/confirmation.html.erb'
- 'app/views/share/_share.html.erb'
- 'app/views/inbox/_reply_button.html.erb'
- 'app/views/invite_requests/index.html.erb'
- 'app/views/challenge_assignments/_assignment_blurb.html.erb'
- 'app/views/collections/_filters.html.erb'
- 'app/views/skins/_update_skin_form.html.erb'
- 'app/views/owned_tag_sets/_tag_set_form_management.html.erb'
- 'app/views/bookmarks/_bookmark_blurb_short.html.erb'
- 'app/views/challenge/shared/_challenge_requests.html.erb'
- 'app/views/series/_series_module.html.erb'
- 'app/views/home/_news_module.html.erb'
- 'app/views/skins/_skin_actions.html.erb'
- 'app/views/challenge_signups/index.html.erb'
- 'app/views/tag_set_nominations/_tag_nominations_by_fandom.html.erb'
- 'app/views/challenge_assignments/_maintainer_index_fulfilled.html.erb'
- 'app/views/challenge_signups/summary.html.erb'
- 'app/views/user_mailer/abuse_report.html.erb'
- 'app/views/comments/_comment_abbreviated_list.html.erb'
- 'app/views/comments/_comment_actions.html.erb'
- 'app/views/tag_set_nominations/show.html.erb'
- 'app/views/owned_tag_sets/_show_tags_in_single_list.html.erb'
- 'app/views/tag_set_associations/index.html.erb'
- 'app/views/archive_faqs/_question_answer_fields.html.erb'
- 'app/views/prompts/_prompt_blurb.html.erb'
- 'app/views/bookmarks/_bookmark_form.html.erb'
- 'app/views/admin/banners/_banner.html.erb'
- 'app/views/owned_tag_sets/_show_fandoms_by_media.html.erb'
- 'app/views/fandoms/unassigned.html.erb'
- 'app/views/challenge/prompt_meme/_challenge_sidebar.html.erb'
- 'app/views/subscriptions/_form.html.erb'
- 'app/views/collections/show.html.erb'
- 'app/views/works/_work_header_navigation.html.erb'
- 'app/views/readings/_reading_blurb.html.erb'
- 'app/views/external_works/_work_module.html.erb'
- 'app/views/layouts/_includes.html.erb'
- 'app/views/bookmarks/_bookmark_user_module.html.erb'
- 'app/views/works/index.html.erb'
- 'app/views/owned_tag_sets/show_options.html.erb'
- 'app/views/layouts/_banner.html.erb'
- 'app/views/tag_set_nominations/_nomination_form.html.erb'
- 'app/views/challenge/shared/_challenge_navigation_user.html.erb'
- 'app/views/archive_faqs/show.html.erb'
- 'app/views/comments/_single_comment.html.erb'
- 'app/views/potential_matches/index.html.erb'
- 'app/views/layouts/_javascripts.html.erb'
- 'app/views/users/_header_navigation.html.erb'
- 'app/views/owned_tag_sets/_show_tags_by_alpha.html.erb'
- 'app/views/works/collected.html.erb'
- 'app/views/user_invite_requests/index.html.erb'
- 'app/views/layouts/_tos_prompt.html.erb'
- 'app/views/layouts/_proxy_notice.html.erb'
- 'app/views/owned_tag_sets/wrangle.html.erb'
- 'app/views/works/_work_blurb.html.erb'
- 'app/views/tag_set_nominations/_review_cast.html.erb'
- 'app/views/bookmarks/_bookmark_owner_navigation.html.erb'
- 'app/views/challenge_assignments/_maintainer_index_defaulted.html.erb'
Layout/DotPosition:
Exclude:
- 'app/views/series/_series_module.html.erb'
- 'app/views/owned_tag_sets/_show_tag_set_associations.html.erb'
Layout/EmptyComment:
Exclude:
- 'app/views/challenge/shared/_challenge_signups.html.erb'
Layout/ExtraSpacing:
Exclude:
- 'app/views/potential_matches/_no_potential_recipients.html.erb'
- 'app/views/potential_matches/_no_potential_givers.html.erb'
- 'app/views/prompts/_prompt_form_tag_options.html.erb'
- 'app/views/collection_profile/show.html.erb'
- 'app/views/comment_mailer/_comment_notification_footer_for_other.html.erb'
- 'app/views/works/_work_module.html.erb'
- 'app/views/admin/admin_invitations/index.html.erb'
- 'app/views/users/registrations/_legal.html.erb'
- 'app/views/prompt_restrictions/_prompt_restriction_form.html.erb'
- 'app/views/works/show_multiple.html.erb'
Layout/FirstHashElementIndentation:
Exclude:
- 'app/views/comments/new.html.erb'
- 'app/views/admin/_admin_options.html.erb'
- 'app/views/prompts/_prompt_form_tag_options.html.erb'
- 'app/views/tag_set_nominations/_tag_nominations_by_fandom.html.erb'
Layout/HashAlignment:
Exclude:
- 'app/views/home/first_login_help.html.erb'
Layout/LeadingCommentSpace:
Exclude:
- 'app/views/potential_matches/_list_recipients_for_pseud.html.erb'
- 'app/views/archive_faqs/show.html.erb'
Layout/LeadingEmptyLines:
Exclude:
- 'app/views/owned_tag_sets/_tag_set_form.html.erb'
- 'app/views/collection_items/_collection_item_form.html.erb'
- 'app/views/tags/wrangle.html.erb'
- 'app/views/owned_tag_sets/wrangle.html.erb'
- 'app/views/prompts/index.html.erb'
- 'app/views/kudo_mailer/batch_kudo_notification.html.erb'
- 'app/views/pseuds/_byline.html.erb'
- 'app/views/admin_posts/_admin_post_form.html.erb'
- 'app/views/challenge/shared/_challenge_signups.html.erb'
- 'app/views/owned_tag_sets/_show_tags_alpha_listbox.html.erb'
- 'app/views/admin/skins/index_approved.html.erb'
- 'app/views/bookmarks/_bookmark_form.html.erb'
- 'app/views/works/_standard_form.html.erb'
- 'app/views/owned_tag_sets/_show_tag_set_tags.html.erb'
- 'app/views/owned_tag_sets/_show_fandoms_by_media.html.erb'
- 'app/views/works/edit_multiple.html.erb'
Layout/MultilineBlockLayout:
Exclude:
- 'app/views/downloads/_download_preface.html.erb'
Layout/MultilineHashBraceLayout:
Exclude:
- 'app/views/collections/_filters.html.erb'
Layout/MultilineMethodCallBraceLayout:
Exclude:
- 'app/views/users/edit.html.erb'
- 'app/views/layouts/_tos_prompt.html.erb'
- 'app/views/bookmarks/_filters.html.erb'
- 'app/views/home/_intro_module.html.erb'
- 'app/views/downloads/_download_preface.html.erb'
- 'app/views/invite_requests/_index_open.html.erb'
- 'app/views/challenge_signups/_signup_form.html.erb'
- 'app/views/users/show.html.erb'
- 'app/views/users/change_username.html.erb'
- 'app/views/invite_requests/_index_closed.html.erb'
- 'app/views/comment_mailer/_comment_notification_footer_for_other.html.erb'
- 'app/views/home/first_login_help.html.erb'
- 'app/views/users/delete_preview.html.erb'
- 'app/views/works/_filters.html.erb'
Layout/MultilineMethodCallIndentation:
Exclude:
- 'app/views/series/_series_module.html.erb'
- 'app/views/owned_tag_sets/_show_tag_set_associations.html.erb'
Layout/MultilineOperationIndentation:
Exclude:
- 'app/views/bookmarks/_filters.html.erb'
Layout/SpaceAfterColon:
Exclude:
- 'app/views/home/first_login_help.html.erb'
Layout/SpaceAfterComma:
Exclude:
- 'app/views/potential_match_settings/_potential_match_settings_form.html.erb'
- 'app/views/owned_tag_sets/_show_tag_set_tags.html.erb'
- 'app/views/home/site_pages.html.erb'
Layout/SpaceAroundOperators:
Exclude:
- 'app/views/layouts/home.html.erb'
- 'app/views/comments/_comment_thread.html.erb'
- 'app/views/works/_work_module.html.erb'
- 'app/views/challenge/shared/_challenge_meta.html.erb'
- 'app/views/prompts/_prompt_form_tag_options.html.erb'
- 'app/views/collection_profile/show.html.erb'
- 'app/views/admin_posts/_admin_post_form.html.erb'
- 'app/views/layouts/application.html.erb'
- 'app/views/admin/admin_invitations/find.html.erb'
- 'app/views/tag_set_nominations/_tag_nominations_by_fandom.html.erb'
- 'app/views/users/_sidebar.html.erb'
- 'app/views/owned_tag_sets/_tag_set_association_fields.html.erb'
- 'app/views/home/site_map.html.erb'
- 'app/views/comment_mailer/_comment_notification_footer_for_other.html.erb'
- 'app/views/layouts/session.html.erb'
- 'app/views/archive_faqs/_question_answer_fields.html.erb'
- 'app/views/invitations/manage.html.erb'
- 'app/views/prompts/_prompt_blurb.html.erb'
- 'app/views/prompts/_prompt_form.html.erb'
- 'app/views/owned_tag_sets/_show_fandoms_by_media.html.erb'
Layout/SpaceBeforeBlockBraces:
Exclude:
- 'app/views/fandoms/unassigned.html.erb'
- 'app/views/fandoms/index.html.erb'
- 'app/views/downloads/_download_preface.html.erb'
- 'app/views/series/_series_module.html.erb'
- 'app/views/downloads/_download_afterword.html.erb'
- 'app/views/user_mailer/batch_subscription_notification.html.erb'
- 'app/views/collection_mailer/item_added_notification.html.erb'
- 'app/views/user_mailer/prompter_notification.html.erb'
- 'app/views/user_mailer/related_work_notification.html.erb'
- 'app/views/prompts/_prompt_blurb.html.erb'
- 'app/views/works/_work_header_navigation.html.erb'
- 'app/views/external_works/_work_module.html.erb'
- 'app/views/bookmarks/_bookmark_form.html.erb'
- 'app/views/external_works/_blurb.html.erb'
- 'app/views/preferences/index.html.erb'
- 'app/views/works/_work_module.html.erb'
Layout/SpaceBeforeComma:
Exclude:
- 'app/views/works/_work_header_navigation.html.erb'
- 'app/views/challenge/shared/_challenge_form_schedule.html.erb'
- 'app/views/prompts/_prompt_form.html.erb'
- 'app/views/home/tos_faq.html.erb'
Layout/SpaceBeforeFirstArg:
Exclude:
- 'app/views/admin/admin_invitations/index.html.erb'
Layout/SpaceInsideArrayLiteralBrackets:
Exclude:
- 'app/views/locales/_locale_form.html.erb'
Layout/SpaceInsideBlockBraces:
Exclude:
- 'app/views/fandoms/unassigned.html.erb'
- 'app/views/owned_tag_sets/_tag_set_form.html.erb'
- 'app/views/challenge_signups/_signup_form.html.erb'
- 'app/views/downloads/_download_afterword.html.erb'
- 'app/views/user_mailer/batch_subscription_notification.html.erb'
- 'app/views/collection_mailer/item_added_notification.html.erb'
- 'app/views/works/_work_header_navigation.html.erb'
- 'app/views/works/_work_module.html.erb'
- 'app/views/prompts/_prompt_form_tag_options.html.erb'
- 'app/views/tag_set_nominations/_nomination_form.html.erb'
- 'app/views/home/site_pages.html.erb'
- 'app/views/collection_profile/show.html.erb'
- 'app/views/works/_work_abbreviated_list.html.erb'
- 'app/views/owned_tag_sets/_show_tag_set_associations.html.erb'
- 'app/views/fandoms/index.html.erb'
- 'app/views/owned_tag_sets/_show_tags_alpha_listbox.html.erb'
- 'app/views/user_mailer/related_work_notification.html.erb'
- 'app/views/preferences/index.html.erb'
- 'app/views/owned_tag_sets/_show_tag_set_tags.html.erb'
- 'app/views/invitations/_user_invitations.html.erb'
- 'app/views/downloads/_download_preface.html.erb'
- 'app/views/potential_match_settings/_potential_match_settings_form.html.erb'
- 'app/views/user_mailer/prompter_notification.html.erb'
- 'app/views/owned_tag_sets/_show_fandoms_by_media.html.erb'
- 'app/views/prompts/_prompt_blurb.html.erb'
- 'app/views/owned_tag_sets/_tag_set_blurb.html.erb'
- 'app/views/bookmarks/_bookmark_form.html.erb'
- 'app/views/collections/_collection_blurb.html.erb'
- 'app/views/owned_tag_sets/show.html.erb'
Layout/SpaceInsideHashLiteralBraces:
Exclude:
- 'app/views/challenge_claims/_unposted_claim_blurb.html.erb'
- 'app/views/archive_faqs/_admin_index.html.erb'
- 'app/views/comment_mailer/comment_sent_notification.html.erb'
- 'app/views/orphans/index.html.erb'
- 'app/views/collection_profile/show.html.erb'
- 'app/views/tags/edit.html.erb'
- 'app/views/archive_faqs/_archive_faq_form.html.erb'
- 'app/views/potential_matches/_no_potential_recipients.html.erb'
- 'app/views/comments/edit.html.erb'
- 'app/views/collections/_challenge_collections.html.erb'
- 'app/views/invitations/_user_invitations.html.erb'
- 'app/views/admin/banners/index.html.erb'
- 'app/views/potential_matches/show.html.erb'
- 'app/views/chapters/manage.html.erb'
- 'app/views/comment_mailer/edited_comment_notification.html.erb'
- 'app/views/comments/_comment_form.html.erb'
- 'app/views/prompts/new.html.erb'
- 'app/views/users/registrations/new.html.erb'
- 'app/views/collection_items/_collection_item_form.html.erb'
- 'app/views/series/index.html.erb'
- 'app/views/collections/_form.html.erb'
- 'app/views/admin/skins/index_rejected.html.erb'
- 'app/views/collections/confirm_delete.html.erb'
- 'app/views/admin/skins/index_approved.html.erb'
- 'app/views/pseuds/index.html.erb'
- 'app/views/challenge/prompt_meme/_prompt_meme_form.html.erb'
- 'app/views/chapters/edit.html.erb'
- 'app/views/series/_series_navigation.html.erb'
- 'app/views/admin/skins/index.html.erb'
- 'app/views/stats/index.html.erb'
- 'app/views/users/_contents.html.erb'
- 'app/views/challenge_signups/confirm_delete.html.erb'
- 'app/views/archive_faqs/confirm_delete.html.erb'
- 'app/views/people/search.html.erb'
- 'app/views/bookmarks/confirm_delete.html.erb'
- 'app/views/prompts/_prompt_navigation.html.erb'
- 'app/views/admin_mailer/edited_comment_notification.html.erb'
- 'app/views/challenge_signups/_signup_controls.html.erb'
- 'app/views/challenge/gift_exchange/_gift_exchange_form.html.erb'
- 'app/views/pseuds/_pseud_blurb.html.erb'
- 'app/views/tag_wranglers/index.html.erb'
- 'app/views/owned_tag_sets/_navigation.html.erb'
- 'app/views/tags/show.html.erb'
- 'app/views/comment_mailer/comment_reply_notification.html.erb'
- 'app/views/collections/_collection_blurb.html.erb'
- 'app/views/owned_tag_sets/_tag_set_form.html.erb'
- 'app/views/comment_mailer/comment_notification.html.erb'
- 'app/views/challenge_assignments/show.html.erb'
- 'app/views/challenge_signups/_signup_form.html.erb'
- 'app/views/chapters/confirm_delete.html.erb'
- 'app/views/profile/show.html.erb'
- 'app/views/tag_set_nominations/confirm_destroy_multiple.html.erb'
- 'app/views/tag_wranglings/index.html.erb'
- 'app/views/challenge_assignments/_assignment_blurb.html.erb'
- 'app/views/bookmarks/_bookmark_blurb_short.html.erb'
- 'app/views/admin/admin_invitations/find.html.erb'
- 'app/views/challenge_signups/summary.html.erb'
- 'app/views/tag_set_nominations/confirm_delete.html.erb'
- 'app/views/tag_set_nominations/show.html.erb'
- 'app/views/owned_tag_sets/confirm_delete.html.erb'
- 'app/views/external_authors/_external_author_form.html.erb'
- 'app/views/admin_mailer/comment_notification.html.erb'
- 'app/views/invitations/show.html.erb'
- 'app/views/invitations/manage.html.erb'
- 'app/views/admin/banners/_navigation.html.erb'
- 'app/views/bookmarks/_bookmark_form.html.erb'
- 'app/views/fandoms/unassigned.html.erb'
- 'app/views/known_issues/_admin_index.html.erb'
- 'app/views/subscriptions/index.html.erb'
- 'app/views/works/_work_header_navigation.html.erb'
- 'app/views/collections/_collection_form_delete.html.erb'
- 'app/views/feedbacks/new.html.erb'
- 'app/views/locales/index.html.erb'
- 'app/views/tag_set_nominations/_nomination_form.html.erb'
- 'app/views/pseuds/delete_preview.html.erb'
- 'app/views/challenge/shared/_challenge_navigation_user.html.erb'
- 'app/views/prompts/edit.html.erb'
- 'app/views/readings/index.html.erb'
- 'app/views/potential_matches/_match_navigation.html.erb'
- 'app/views/admin/banners/confirm_delete.html.erb'
- 'app/views/admin_posts/_admin_index.html.erb'
- 'app/views/potential_matches/_no_potential_givers.html.erb'
- 'app/views/tags/wrangle.html.erb'
- 'app/views/home/site_map.html.erb'
- 'app/views/user_invite_requests/index.html.erb'
- 'app/views/works/_search_box.html.erb'
- 'app/views/series/confirm_delete.html.erb'
- 'app/views/comment_mailer/edited_comment_reply_notification.html.erb'
- 'app/views/works/_work_blurb.html.erb'
- 'app/views/owned_tag_sets/batch_load.html.erb'
- 'app/views/bookmarks/_bookmark_owner_navigation.html.erb'
- 'app/views/languages/show.html.erb'
- 'app/views/works/confirm_delete.html.erb'
- 'app/views/works/edit.html.erb'
- 'app/views/works/edit_multiple.html.erb'
- 'app/views/works/new.html.erb'
- 'app/views/works/search_results.html.erb'
- 'app/views/wrangling_guidelines/_admin_index.html.erb'
Layout/SpaceInsideParens:
Exclude:
- 'app/views/layouts/_header.html.erb'
- 'app/views/admin/sessions/new.html.erb'
- 'app/views/prompts/_prompt_form_tag_options.html.erb'
- 'app/views/skins/_form.html.erb'
- 'app/views/external_authors/index.html.erb'
- 'app/views/tags/edit.html.erb'
- 'app/views/works/new.html.erb'
- 'app/views/works/new_import.html.erb'
Layout/SpaceInsideStringInterpolation:
Exclude:
- 'app/views/works/new_import.html.erb'
Layout/SingleLineBlockChain:
Exclude:
- 'app/views/user_mailer/batch_subscription_notification.html.erb'
- 'app/views/collection_mailer/item_added_notification.html.erb'
- 'app/views/kudo_mailer/batch_kudo_notification.html.erb'
- 'app/views/external_works/_work_module.html.erb'
- 'app/views/works/_work_module.html.erb'
- 'app/views/home/site_pages.html.erb'
- 'app/views/collection_profile/show.html.erb'
- 'app/views/works/_work_abbreviated_list.html.erb'
- 'app/views/external_works/_blurb.html.erb'
- 'app/views/share/_embed_meta.html.erb'
- 'app/views/owned_tag_sets/_show_tag_set_associations.html.erb'
- 'app/views/share/_embed_link_header.html.erb'
- 'app/views/user_mailer/challenge_assignment_notification.html.erb'
- 'app/views/owned_tag_sets/_show_tags_alpha_listbox.html.erb'
- 'app/views/kudos/index.html.erb'
- 'app/views/user_mailer/related_work_notification.html.erb'
- 'app/views/owned_tag_sets/_show_tag_set_tags.html.erb'
- 'app/views/invitations/_user_invitations.html.erb'
- 'app/views/downloads/_download_preface.html.erb'
- 'app/views/potential_match_settings/_potential_match_settings_form.html.erb'
- 'app/views/user_mailer/prompter_notification.html.erb'
- 'app/views/owned_tag_sets/_show_fandoms_by_media.html.erb'
- 'app/views/prompts/_prompt_blurb.html.erb'
- 'app/views/owned_tag_sets/_tag_set_blurb.html.erb'
- 'app/views/collections/_collection_blurb.html.erb'
- 'app/views/owned_tag_sets/show.html.erb'
Lint/AmbiguousBlockAssociation:
Exclude:
- 'app/views/tag_set_nominations/_nomination_form.html.erb'
- 'app/views/preferences/index.html.erb'
Lint/ParenthesesAsGroupedExpression:
Exclude:
- 'app/views/home/dmca.html.erb'
- 'app/views/downloads/_download_chapter.html.erb'
- 'app/views/works/confirm_delete.html.erb'
Lint/RedundantStringCoercion:
Exclude:
- 'app/views/prompts/_prompt_blurb.html.erb'
Lint/TopLevelReturnWithArgument:
Exclude:
- 'app/views/user_mailer/challenge_assignment_notification.html.erb'
Lint/UnusedBlockArgument:
Exclude:
- 'app/views/potential_match_settings/_potential_match_settings_form.html.erb'
Naming/VariableNumber:
Exclude:
- 'app/views/users/registrations/_legal.html.erb'
Rails/Blank:
Exclude:
- 'app/views/user_mailer/challenge_assignment_notification.html.erb'
- 'app/views/challenge_signups/_signup_form.html.erb'
Rails/LinkToBlank:
Exclude:
- 'app/views/prompts/_prompt_form_tag_options.html.erb'
- 'app/views/users/registrations/_legal.html.erb'
Rails/NegateInclude:
Exclude:
- 'app/views/inbox/show.html.erb'
Rails/Presence:
Exclude:
- 'app/views/comments/_single_comment.html.erb'
- 'app/views/prompts/_prompt_blurb.html.erb'
- 'app/views/prompts/_prompt_form.html.erb'
- 'app/views/invite_requests/manage.html.erb'
Rails/Present:
Exclude:
- 'app/views/profile/show.html.erb'
- 'app/views/works/_notes_form.html.erb'
Rails/TimeZone:
Exclude:
- 'app/views/user_mailer/collection_notification.html.erb'
- 'app/views/challenge/gift_exchange/_challenge_signups_summary.html.erb'
- 'app/views/prompts/_prompt_form_tag_options.html.erb'
- 'app/views/user_mailer/challenge_assignment_notification.html.erb'
- 'app/views/user_mailer/abuse_report.html.erb'
- 'app/views/user_mailer/potential_match_generation_notification.html.erb'
- 'app/views/user_mailer/feedback.html.erb'
- 'app/views/user_mailer/invalid_signup_notification.html.erb'
Style/BlockDelimiters:
Exclude:
- 'app/views/downloads/_download_preface.html.erb'
- 'app/views/downloads/_download_afterword.html.erb'
- 'app/views/potential_matches/_list_recipients_for_pseud.html.erb'
Style/ClassEqualityComparison:
Exclude:
- 'app/views/tags/edit.html.erb'
Style/CommentAnnotation:
Exclude:
- 'app/views/prompts/_prompt_form.html.erb'
Style/ConditionalAssignment:
Exclude:
- 'app/views/archive_faqs/_faq_index.html.erb'
- 'app/views/stats/index.html.erb'
- 'app/views/works/_work_header_navigation.html.erb'
Style/HashAsLastArrayItem:
Exclude:
- 'app/views/works/_work_header_navigation.html.erb'
Style/HashExcept:
Exclude:
- 'app/views/potential_match_settings/_potential_match_settings_form.html.erb'
Style/HashSyntax:
Exclude:
- 'app/views/user_mailer/invitation_to_claim.html.erb'
- 'app/views/bookmarks/show.html.erb'
- 'app/views/challenge/shared/_challenge_form_schedule.html.erb'
- 'app/views/challenge_claims/_unposted_claim_blurb.html.erb'
- 'app/views/archive_faqs/_filters.html.erb'
- 'app/views/downloads/_download_afterword.html.erb'
- 'app/views/challenge_assignments/_user_index.html.erb'
- 'app/views/archive_faqs/_admin_index.html.erb'
- 'app/views/external_authors/_external_author_navigation.html.erb'
- 'app/views/comment_mailer/comment_sent_notification.html.erb'
- 'app/views/prompts/_prompt_form_tag_options.html.erb'
- 'app/views/archive_faqs/manage.html.erb'
- 'app/views/challenge_claims/_maintainer_index.html.erb'
- 'app/views/orphans/_orphan_series.html.erb'
- 'app/views/orphans/index.html.erb'
- 'app/views/collection_profile/show.html.erb'
- 'app/views/layouts/application.html.erb'
- 'app/views/skins/_form.html.erb'
- 'app/views/downloads/show.html.erb'
- 'app/views/challenge/gift_exchange/new.html.erb'
- 'app/views/collections/_sidebar.html.erb'
- 'app/views/collections/list_pm_challenges.html.erb'
- 'app/views/tag_set_nominations/_review_individual_nom.html.erb'
- 'app/views/archive_faqs/_archive_faq_form.html.erb'
- 'app/views/bookmarks/index.html.erb'
- 'app/views/potential_matches/_no_potential_recipients.html.erb'
- 'app/views/comments/edit.html.erb'
- 'app/views/related_works/index.html.erb'
- 'app/views/challenge_signups/edit.html.erb'
- 'app/views/collections/_challenge_collections.html.erb'
- 'app/views/works/_work_form_tags.html.erb'
- 'app/views/known_issues/_known_issues_form.html.erb'
- 'app/views/invitations/index.html.erb'
- 'app/views/archive_faqs/_faq_index.html.erb'
- 'app/views/challenge/shared/_challenge_signups.html.erb'
- 'app/views/comment_mailer/_comment_notification_footer_for_other.html.erb'
- 'app/views/locales/new.html.erb'
- 'app/views/invitations/_user_invitations.html.erb'
- 'app/views/collections/_works_module.html.erb'
- 'app/views/user_invite_requests/new.html.erb'
- 'app/views/potential_matches/show.html.erb'
- 'app/views/owned_tag_sets/_internal_tag_set_fields.html.erb'
- 'app/views/pseuds/show.html.erb'
- 'app/views/opendoors/external_authors/index.html.erb'
- 'app/views/chapters/manage.html.erb'
- 'app/views/comment_mailer/edited_comment_notification.html.erb'
- 'app/views/collectibles/_collectible_form.html.erb'
- 'app/views/external_authors/index.html.erb'
- 'app/views/gifts/_gift_search.html.erb'
- 'app/views/related_works/show.html.erb'
- 'app/views/works/_work_approved_children.html.erb'
- 'app/views/bookmarks/_bookmarks.html.erb'
- 'app/views/comments/_comment_form.html.erb'
- 'app/views/prompts/_prompt_form.html.erb'
- 'app/views/prompts/new.html.erb'
- 'app/views/series/_series_blurb.html.erb'
- 'app/views/series/edit.html.erb'
- 'app/views/users/registrations/new.html.erb'
- 'app/views/pseuds/edit.html.erb'
- 'app/views/challenge_assignments/_maintainer_index_unfulfilled.html.erb'
- 'app/views/collection_items/_collection_item_form.html.erb'
- 'app/views/collections/_form.html.erb'
- 'app/views/series/index.html.erb'
- 'app/views/admin/skins/index_rejected.html.erb'
- 'app/views/owned_tag_sets/_tag_set_associations_remove.html.erb'
- 'app/views/admin_posts/_filters.html.erb'
- 'app/views/challenge_signups/_signup_form_general_information.html.erb'
- 'app/views/external_works/new.html.erb'
- 'app/views/prompts/_prompt_controls.html.erb'
- 'app/views/collections/confirm_delete.html.erb'
- 'app/views/admin_posts/edit.html.erb'
- 'app/views/admin/skins/index_approved.html.erb'
- 'app/views/bookmarks/edit.html.erb'
- 'app/views/fandoms/show.html.erb'
- 'app/views/home/tos_faq.html.erb'
- 'app/views/users/registrations/_legal.html.erb'
- 'app/views/prompts/show.html.erb'
- 'app/views/locales/_navigation.html.erb'
- 'app/views/pseuds/index.html.erb'
- 'app/views/challenge/prompt_meme/_prompt_meme_form.html.erb'
- 'app/views/chapters/new.html.erb'
- 'app/views/admin/admin_users/confirm_delete_user_creations.html.erb'
- 'app/views/admin/skins/index.html.erb'
- 'app/views/layouts/_footer.html.erb'
- 'app/views/series/_series_navigation.html.erb'
- 'app/views/stats/index.html.erb'
- 'app/views/users/_contents.html.erb'
- 'app/views/challenge_signups/confirm_delete.html.erb'
- 'app/views/archive_faqs/confirm_delete.html.erb'
- 'app/views/works/_standard_form.html.erb'
- 'app/views/tags/search.html.erb'
- 'app/views/users/_sidebar.html.erb'
- 'app/views/challenge/gift_exchange/_challenge_signups_summary.html.erb'
- 'app/views/challenge/shared/_challenge_form_confirm_delete.html.erb'
- 'app/views/people/search.html.erb'
- 'app/views/bookmarks/confirm_delete.html.erb'
- 'app/views/prompts/_prompt_navigation.html.erb'
- 'app/views/owned_tag_sets/_show_tag_set_tags.html.erb'
- 'app/views/admin_mailer/edited_comment_notification.html.erb'
- 'app/views/pseuds/_pseud_blurb.html.erb'
- 'app/views/challenge/gift_exchange/_gift_exchange_form.html.erb'
- 'app/views/collections/_bookmarks_module.html.erb'
- 'app/views/invitations/_invitation.html.erb'
- 'app/views/opendoors/external_authors/show.html.erb'
- 'app/views/tag_wranglers/index.html.erb'
- 'app/views/tags/index.html.erb'
- 'app/views/external_authors/_external_author_blurb.html.erb'
- 'app/views/owned_tag_sets/_navigation.html.erb'
- 'app/views/potential_match_settings/_potential_match_settings_form.html.erb'
- 'app/views/challenge/gift_exchange/_challenge_navigation_user.html.erb'
- 'app/views/tags/show.html.erb'
- 'app/views/challenge_signups/show.html.erb'
- 'app/views/comment_mailer/comment_reply_notification.html.erb'
- 'app/views/tag_set_nominations/_review_fandoms.html.erb'
- 'app/views/collections/_collection_blurb.html.erb'
- 'app/views/owned_tag_sets/show.html.erb'
- 'app/views/owned_tag_sets/_tag_set_form.html.erb'
- 'app/views/comment_mailer/comment_notification.html.erb'
- 'app/views/admin/skins/_navigation.html.erb'
- 'app/views/archive_faqs/edit.html.erb'
- 'app/views/orphans/_orphan_work.html.erb'
- 'app/views/challenge_assignments/show.html.erb'
- 'app/views/challenge/shared/_challenge_form_instructions.html.erb'
- 'app/views/challenge_signups/_signup_form.html.erb'
- 'app/views/chapters/confirm_delete.html.erb'
- 'app/views/locales/edit.html.erb'
- 'app/views/pseuds/new.html.erb'
- 'app/views/potential_matches/_assignments.html.erb'
- 'app/views/known_issues/index.html.erb'
- 'app/views/profile/show.html.erb'
- 'app/views/tag_set_nominations/confirm_destroy_multiple.html.erb'
- 'app/views/admin/admin_invitations/index.html.erb'
- 'app/views/challenge/prompt_meme/_challenge_navigation_user.html.erb'
- 'app/views/comments/unreviewed.html.erb'
- 'app/views/known_issues/new.html.erb'
- 'app/views/tag_set_nominations/index.html.erb'
- 'app/views/works/_work_module.html.erb'
- 'app/views/owned_tag_sets/index.html.erb'
- 'app/views/challenge_assignments/_assignment_blurb.html.erb'
- 'app/views/collections/new.html.erb'
- 'app/views/challenge/shared/_challenge_meta.html.erb'
- 'app/views/owned_tag_sets/_tag_set_form_management.html.erb'
- 'app/views/bookmarks/_bookmark_blurb_short.html.erb'
- 'app/views/challenge/shared/_challenge_requests.html.erb'
- 'app/views/works/drafts.html.erb'
- 'app/views/bookmarks/new.html.erb'
- 'app/views/home/_news_module.html.erb'
- 'app/views/admin_posts/_admin_post_form.html.erb'
- 'app/views/chapters/_hidden_fields.html.erb'
- 'app/views/challenge_signups/index.html.erb'
- 'app/views/admin/admin_invitations/find.html.erb'
- 'app/views/tag_set_nominations/_tag_nominations_by_fandom.html.erb'
- 'app/views/challenge_assignments/_maintainer_index_fulfilled.html.erb'
- 'app/views/challenge_claims/_user_index.html.erb'
- 'app/views/opendoors/tools/_tools_navigation.html.erb'
- 'app/views/challenge_signups/_show_requests.html.erb'
- 'app/views/challenge_signups/summary.html.erb'
- 'app/views/collections/list_ge_challenges.html.erb'
- 'app/views/tag_set_nominations/confirm_delete.html.erb'
- 'app/views/comments/_comment_actions.html.erb'
- 'app/views/people/index.html.erb'
- 'app/views/tag_set_nominations/_show_by_tag_type.html.erb'
- 'app/views/tag_set_nominations/show.html.erb'
- 'app/views/owned_tag_sets/confirm_delete.html.erb'
- 'app/views/unsorted_tags/index.html.erb'
- 'app/views/layouts/_header.html.erb'
- 'app/views/challenge/gift_exchange/_challenge_sidebar.html.erb'
- 'app/views/external_authors/_external_author_form.html.erb'
- 'app/views/admin_mailer/comment_notification.html.erb'
- 'app/views/invitations/show.html.erb'
- 'app/views/tag_set_associations/index.html.erb'
- 'app/views/prompts/_prompt_blurb.html.erb'
- 'app/views/invitations/manage.html.erb'
- 'app/views/series/manage.html.erb'
- 'app/views/admin/admin_invitations/new.html.erb'
- 'app/views/bookmarks/_bookmark_form.html.erb'
- 'app/views/comments/_confirm_delete.html.erb'
- 'app/views/owned_tag_sets/_show_fandoms_by_media.html.erb'
- 'app/views/prompt_restrictions/_prompt_restriction_form.html.erb'
- 'app/views/fandoms/unassigned.html.erb'
- 'app/views/known_issues/_admin_index.html.erb'
- 'app/views/challenge/prompt_meme/_challenge_sidebar.html.erb'
- 'app/views/collection_items/new.html.erb'
- 'app/views/redirect/show.html.erb'
- 'app/views/archive_faqs/_archive_faq_order.html.erb'
- 'app/views/works/_hidden_fields.html.erb'
- 'app/views/opendoors/tools/index.html.erb'
- 'app/views/collections/show.html.erb'
- 'app/views/subscriptions/index.html.erb'
- 'app/views/admin/api/_api_key_form.html.erb'
- 'app/views/works/_work_header_navigation.html.erb'
- 'app/views/external_authors/_external_author_name.html.erb'
- 'app/views/works/confirm_delete.html.erb'
- 'app/views/comments/new.html.erb'
- 'app/views/feedbacks/new.html.erb'
- 'app/views/bookmarks/_bookmark_user_module.html.erb'
- 'app/views/locales/index.html.erb'
- 'app/views/tag_set_nominations/_review.html.erb'
- 'app/views/works/_notes_form.html.erb'
- 'app/views/series/_series_order.html.erb'
- 'app/views/archive_faqs/_archive_faq_questions_order.html.erb'
- 'app/views/tag_set_nominations/_nomination_form.html.erb'
- 'app/views/collections/edit.html.erb'
- 'app/views/home/about.html.erb'
- 'app/views/layouts/_banner.html.erb'
- 'app/views/challenge/shared/_challenge_navigation_user.html.erb'
- 'app/views/prompts/edit.html.erb'
- 'app/views/challenge_signups/new.html.erb'
- 'app/views/pseuds/delete_preview.html.erb'
- 'app/views/readings/index.html.erb'
- 'app/views/admin_posts/new.html.erb'
- 'app/views/owned_tag_sets/edit.html.erb'
- 'app/views/users/sessions/_greeting.html.erb'
- 'app/views/archive_faqs/show.html.erb'
- 'app/views/comments/_single_comment.html.erb'
- 'app/views/media/index.html.erb'
- 'app/views/potential_matches/index.html.erb'
- 'app/views/challenge/prompt_meme/edit.html.erb'
- 'app/views/external_authors/edit.html.erb'
- 'app/views/admin_posts/_admin_index.html.erb'
- 'app/views/owned_tag_sets/_tag_set_association_fields.html.erb'
- 'app/views/languages/new.html.erb'
- 'app/views/potential_matches/_no_potential_givers.html.erb'
- 'app/views/archive_faqs/new.html.erb'
- 'app/views/home/site_map.html.erb'
- 'app/views/users/_header_navigation.html.erb'
- 'app/views/owned_tag_sets/_show_tags_by_alpha.html.erb'
- 'app/views/known_issues/edit.html.erb'
- 'app/views/challenge/prompt_meme/new.html.erb'
- 'app/views/skins/_skin_parent_fields.html.erb'
- 'app/views/comments/show.html.erb'
- 'app/views/collections/list_challenges.html.erb'
- 'app/views/works/collected.html.erb'
- 'app/views/potential_matches/_no_match_required.html.erb'
- 'app/views/challenge_signups/_show_offers.html.erb'
- 'app/views/challenge/prompt_meme/_challenge_signups.html.erb'
- 'app/views/works/_search_form.html.erb'
- 'app/views/preferences/index.html.erb'
- 'app/views/user_invite_requests/index.html.erb'
- 'app/views/bookmarks/search_results.html.erb'
- 'app/views/works/_search_box.html.erb'
- 'app/views/series/confirm_delete.html.erb'
- 'app/views/comment_mailer/edited_comment_reply_notification.html.erb'
- 'app/views/works/_work_blurb.html.erb'
- 'app/views/home/dmca.html.erb'
- 'app/views/owned_tag_sets/batch_load.html.erb'
- 'app/views/challenge/gift_exchange/edit.html.erb'
- 'app/views/tag_set_nominations/_review_cast.html.erb'
- 'app/views/challenge_assignments/_maintainer_index_defaulted.html.erb'
- 'app/views/languages/show.html.erb'
- 'app/views/languages/edit.html.erb'
- 'app/views/locales/_locale_form.html.erb'
- 'app/views/works/confirm_delete_multiple.html.erb'
- 'app/views/works/edit.html.erb'
- 'app/views/works/edit_multiple.html.erb'
- 'app/views/works/index.html.erb'
- 'app/views/works/new.html.erb'
- 'app/views/works/new_import.html.erb'
- 'app/views/works/search_results.html.erb'
- 'app/views/works/show_multiple.html.erb'
- 'app/views/wrangling_guidelines/_admin_index.html.erb'
- 'app/views/wrangling_guidelines/_wrangling_guideline_form.html.erb'
- 'app/views/wrangling_guidelines/_wrangling_guideline_order.html.erb'
Style/IfUnlessModifier:
Exclude:
- 'app/views/pseuds/_byline.html.erb'
Style/InverseMethods:
Exclude:
- 'app/views/downloads/_download_preface.html.erb'
- 'app/views/potential_match_settings/_potential_match_settings_form.html.erb'
Style/LineEndConcatenation:
Exclude:
- 'app/views/admin/admin_users/bulk_search.html.erb'
Style/MultilineTernaryOperator:
Exclude:
- 'app/views/downloads/_download_preface.html.erb'
- 'app/views/works/_work_form_tags.html.erb'
- 'app/views/user_mailer/batch_subscription_notification.html.erb'
- 'app/views/comment_mailer/edited_comment_reply_notification.html.erb'
- 'app/views/subscriptions/index.html.erb'
- 'app/views/user_mailer/delete_work_notification.html.erb'
- 'app/views/potential_matches/_list_recipients_for_pseud.html.erb'
- 'app/views/admin_posts/index.html.erb'
- 'app/views/comment_mailer/comment_reply_notification.html.erb'
- 'app/views/home/first_login_help.html.erb'
Style/NegatedUnless:
Exclude:
- 'app/views/challenge_signups/_signup_form.html.erb'
Style/NestedParenthesizedCalls:
Exclude:
- 'app/views/user_mailer/collection_notification.html.erb'
- 'app/views/comment_mailer/comment_notification.html.erb'
- 'app/views/user_mailer/invitation_to_claim.html.erb'
- 'app/views/comment_mailer/comment_sent_notification.html.erb'
- 'app/views/layouts/_javascripts.html.erb'
- 'app/views/admin_mailer/comment_notification.html.erb'
- 'app/views/user_mailer/admin_hidden_work_notification.html.erb'
- 'app/views/user_mailer/abuse_report.html.erb'
- 'app/views/user_mailer/batch_subscription_notification.html.erb'
- 'app/views/user_mailer/prompter_notification.html.erb'
- 'app/views/comment_mailer/edited_comment_notification.html.erb'
- 'app/views/comment_mailer/edited_comment_reply_notification.html.erb'
- 'app/views/user_mailer/_work_info.html.erb'
- 'app/views/user_mailer/delete_work_notification.html.erb'
- 'app/views/user_mailer/signup_notification.html.erb'
- 'app/views/comment_mailer/comment_reply_notification.html.erb'
- 'app/views/user_mailer/admin_deleted_work_notification.html.erb'
- 'app/views/admin_mailer/edited_comment_notification.html.erb'
Style/NestedTernaryOperator:
Exclude:
- 'app/views/layouts/_header.html.erb'