forked from newrelic/repolinter-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
repolinter.json
809 lines (809 loc) · 25.1 KB
/
repolinter.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
{
"version": 2,
"axioms": {},
"rules": {
"license-file-exists": {
"level": "error",
"rule": {
"type": "file-existence",
"options": {
"globsAny": ["{docs/,.github/,}LICENSE*"],
"nocase": true,
"file-name": "LICENSE",
"file-content": "This project is licensed under..."
}
}
},
"security-file-exists": {
"level": "error",
"rule": {
"type": "file-existence",
"options": {
"globsAny": ["{docs/,.github/,}SECURITY.md"],
"file-name": "SECURITY.md",
"file-content": "Security policy and procedures..."
}
}
},
"readme-file-exists": {
"level": "error",
"rule": {
"type": "file-existence",
"options": {
"globsAny": ["README.md"],
"nocase": true,
"file-name": "README.md",
"file-content": "Project documentation and overview..."
}
}
},
"contributing-file-exists": {
"level": "error",
"rule": {
"type": "file-existence",
"options": {
"globsAny": ["{docs/,.github/,}CONTRIBUTING.md"],
"nocase": true,
"file-name": "CONTRIBUTING.md",
"file-content": "Guidelines for contributing..."
}
}
},
"maintainers-file-exists": {
"level": "off",
"rule": {
"type": "file-existence",
"options": {
"globsAny": ["{docs/,.github/,}MAINTAINERS.md"],
"file-name": "MAINTAINERS.md",
"file-content": "List of project maintainers..."
}
}
},
"codeowners-file-exists": {
"level": "off",
"rule": {
"type": "file-existence",
"options": {
"globsAny": ["{docs/,.github/,}CODEOWNERS.md"],
"file-name": "CODEOWNERS.md",
"file-content": "Code ownership assignments..."
}
}
},
"governance-file-exists": {
"level": "off",
"rule": {
"type": "file-existence",
"options": {
"globsAny": ["{docs/,.github/,}GOVERNANCE.md"],
"file-name": "GOVERNANCE.md",
"file-content": "Project governance structure..."
}
}
},
"community-guidelines-file-exists": {
"level": "off",
"rule": {
"type": "file-existence",
"options": {
"globsAny": ["{docs/,.github/,}COMMUNITY_GUIDELINES.md"],
"file-name": "COMMUNITY_GUIDELINES.md",
"file-content": "Community participation guidelines..."
}
}
},
"code-of-conduct-file-exists": {
"level": "off",
"rule": {
"type": "file-existence",
"options": {
"globsAny": ["{docs/,.github/,}CODE_OF_CONDUCT.md"],
"file-name": "CODE_OF_CONDUCT.md",
"file-content": "Expected conduct guidelines..."
}
}
},
"license-contains-license": {
"level": "error",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["{docs/,.github/,}LICENSE*"],
"content": "license",
"flags": "i",
"file-name": "LICENSE",
"file-content": "MIT License\n\nCopyright (c) [year] [fullname]\n\nPermission is hereby granted..."
}
}
},
"security-contains-security-and-responsible-disclosure-policy": {
"level": "error",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["{docs/,.github/,}SECURITY.md"],
"content": "Security and Responsible Disclosure Policy",
"flags": "i",
"file-name": "SECURITY.md",
"file-content": "\n## Security and Responsible Disclosure Policy\nDetails about security vulnerabilities and how to report them..."
}
}
},
"readme-contains-about-the-project": {
"level": "error",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["README.md"],
"content": "About the Project",
"flags": "i",
"file-name": "README.md",
"file-content": "\n## About the Project\nA description of the project's purpose and functionality..."
}
}
},
"readme-contains-project-vision": {
"level": "off",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["README.md"],
"content": "Project Vision",
"flags": "i",
"file-name": "README.md",
"file-content": "\n## Project Vision\nThe long-term goals and aspirations for this project..."
}
}
},
"readme-contains-project-mission": {
"level": "warning",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["README.md"],
"content": "Project Mission",
"flags": "i",
"file-name": "README.md",
"file-content": "\n## Project Mission\nThe core mission and objectives driving this project..."
}
}
},
"readme-contains-agency-mission": {
"level": "warning",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["README.md"],
"content": "Agency Mission",
"flags": "i",
"file-name": "README.md",
"file-content": "\n## Agency Mission\nThe mission of our agency and how this project aligns..."
}
}
},
"readme-contains-team-mission": {
"level": "warning",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["README.md"],
"content": "Team Mission",
"flags": "i",
"file-name": "README.md",
"file-content": "\n## Team Mission\nOur team's goals and how we work together..."
}
}
},
"readme-contains-core-team": {
"level": "error",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["README.md"],
"content": "Core Team",
"flags": "i",
"file-name": "README.md",
"file-content": "\n## Core Team\nKey members and contributors of the project..."
}
}
},
"readme-contains-documentation-index": {
"level": "warning",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["README.md"],
"content": "Documentation Index",
"flags": "i",
"file-name": "README.md",
"file-content": "\n## Documentation Index\nLinks to all project documentation..."
}
}
},
"readme-contains-repository-structure": {
"level": "warning",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["README.md"],
"content": "Repository Structure",
"flags": "i",
"file-name": "README.md",
"file-content": "\n## Repository Structure\nOverview of key directories and files..."
}
}
},
"readme-contains-development-and-software-delivery-lifecycle": {
"level": "warning",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["README.md"],
"content": "Development and Software Delivery Lifecycle",
"flags": "i",
"file-name": "README.md",
"file-content": "\n## Development and Software Delivery Lifecycle\nStages from development to deployment..."
}
}
},
"readme-contains-local-development": {
"level": "warning",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["README.md"],
"content": "Local Development",
"flags": "i",
"file-name": "README.md",
"file-content": "\n## Local Development\nSteps to set up and run the project locally..."
}
}
},
"readme-contains-coding-style-and-linters": {
"level": "warning",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["README.md"],
"content": "Coding Style and Linters",
"flags": "i",
"file-name": "README.md",
"file-content": "\n## Coding Style and Linters\nCoding standards and tools for maintaining code quality..."
}
}
},
"readme-contains-branching-model": {
"level": "warning",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["README.md"],
"content": "Branching Model",
"flags": "i",
"file-name": "README.md",
"file-content": "\n## Branching Model\nGit workflow and branch naming conventions..."
}
}
},
"readme-contains-contributing": {
"level": "warning",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["README.md"],
"content": "Contributing",
"flags": "i",
"file-name": "README.md",
"file-content": "\n## Contributing\nGuidelines for contributing to the project..."
}
}
},
"readme-contains-codeowners": {
"level": "warning",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["README.md"],
"content": "Codeowners",
"flags": "i",
"file-name": "README.md",
"file-content": "\n## Codeowners\nList of maintainers responsible for different parts..."
}
}
},
"readme-contains-community": {
"level": "warning",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["README.md"],
"content": "Community",
"flags": "i",
"file-name": "README.md",
"file-content": "\n## Community\nInformation about our community and how to get involved..."
}
}
},
"readme-contains-community-guidelines": {
"level": "warning",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["README.md"],
"content": "Community Guidelines",
"flags": "i",
"file-name": "README.md",
"file-content": "\n## Community Guidelines\nStandards for community interaction and behavior..."
}
}
},
"readme-contains-governance": {
"level": "off",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["README.md"],
"content": "Governance",
"flags": "i",
"file-name": "README.md",
"file-content": "\n## Governance\nProject governance structure and decision-making process..."
}
}
},
"readme-contains-feedback": {
"level": "warning",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["README.md"],
"content": "Feedback",
"flags": "i",
"file-name": "README.md",
"file-content": "\n## Feedback\nHow to provide feedback and suggestions..."
}
}
},
"readme-contains-glossary": {
"level": "warning",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["README.md"],
"content": "Glossary",
"flags": "i",
"file-name": "README.md",
"file-content": "\n## Glossary\nDefinitions of key terms and concepts..."
}
}
},
"readme-contains-policies": {
"level": "error",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["README.md"],
"content": "Policies",
"flags": "i",
"file-name": "README.md",
"file-content": "\n## Policies\nProject policies and guidelines..."
}
}
},
"readme-contains-open-source-policy": {
"level": "error",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["README.md"],
"content": "Open Source Policy",
"flags": "i",
"file-name": "README.md",
"file-content": "\n## Open Source Policy\nGuidelines for open source contributions..."
}
}
},
"readme-contains-security-and-responsible-disclosure-policy": {
"level": "error",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["README.md"],
"content": "Security and Responsible Disclosure Policy",
"flags": "i",
"file-name": "README.md",
"file-content": "\n## Security and Responsible Disclosure Policy\nHow to report security vulnerabilities..."
}
}
},
"readme-contains-public-domain": {
"level": "error",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["README.md"],
"content": "Public domain",
"flags": "i",
"file-name": "README.md",
"file-content": "\n## Public Domain\nInformation about public domain status..."
}
}
},
"contributing-contains-how-to-contribute": {
"level": "warning",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["{docs/,.github/,}CONTRIBUTING.md"],
"content": "How to Contribute",
"flags": "i",
"file-name": "CONTRIBUTING.md",
"file-content": "\n## How to Contribute\nSteps for making contributions to the project..."
}
}
},
"contributing-contains-getting-started": {
"level": "error",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["{docs/,.github/,}CONTRIBUTING.md"],
"content": "Getting Started",
"flags": "i",
"file-name": "CONTRIBUTING.md",
"file-content": "\n## Getting Started\nInitial setup steps for contributors..."
}
}
},
"contributing-contains-team-specific-guidelines": {
"level": "off",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["{docs/,.github/,}CONTRIBUTING.md"],
"content": "Team Specific Guidelines",
"flags": "i",
"file-name": "CONTRIBUTING.md",
"file-content": "\n## Team Specific Guidelines\nTeam-specific contribution requirements..."
}
}
},"contributing-contains-building-dependencies": {
"level": "error",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["{docs/,.github/,}CONTRIBUTING.md"],
"content": "Building dependencies",
"flags": "i",
"file-name": "CONTRIBUTING.md",
"file-content": "\n## Building Dependencies\nSteps to build project dependencies..."
}
}
},
"contributing-contains-building-the-project": {
"level": "error",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["{docs/,.github/,}CONTRIBUTING.md"],
"content": "Building the Project",
"flags": "i",
"file-name": "CONTRIBUTING.md",
"file-content": "\n## Building the Project\nSteps to build and test the project..."
}
}
},
"contributing-contains-workflow-and-branching": {
"level": "warning",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["{docs/,.github/,}CONTRIBUTING.md"],
"content": "Workflow and Branching",
"flags": "i",
"file-name": "CONTRIBUTING.md",
"file-content": "\n## Workflow and Branching\nGit workflow guidelines and branch conventions..."
}
}
},
"contributing-contains-testing-conventions": {
"level": "warning",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["{docs/,.github/,}CONTRIBUTING.md"],
"content": "Testing Conventions",
"flags": "i",
"file-name": "CONTRIBUTING.md",
"file-content": "\n## Testing Conventions\nTesting requirements and guidelines..."
}
}
},
"contributing-contains-coding-style-and-linters": {
"level": "warning",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["{docs/,.github/,}CONTRIBUTING.md"],
"content": "Coding Style and Linters",
"flags": "i",
"file-name": "CONTRIBUTING.md",
"file-content": "\n## Coding Style and Linters\nCode formatting and linting requirements..."
}
}
},
"contributing-contains-writing-issues": {
"level": "error",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["{docs/,.github/,}CONTRIBUTING.md"],
"content": "ISSUE_TEMPLATE.md | Issues",
"flags": "i",
"file-name": "CONTRIBUTING.md",
"file-content": "\n## Writing Issues\nGuidelines for creating effective issue reports..."
}
}
},
"contributing-contains-writing-pull-requests": {
"level": "off",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["{docs/,.github/,}CONTRIBUTING.md"],
"content": "Writing Pull Requests",
"flags": "i",
"file-name": "CONTRIBUTING.md",
"file-content": "\n## Writing Pull Requests\nGuidelines for submitting pull requests..."
}
}
},
"contributing-contains-reviewing-pull-requests": {
"level": "off",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["{docs/,.github/,}CONTRIBUTING.md"],
"content": "Reviewing Pull Requests",
"flags": "i",
"file-name": "CONTRIBUTING.md",
"file-content": "\n## Reviewing Pull Requests\nGuidelines for reviewing contributions..."
}
}
},
"contributing-contains-shipping-releases": {
"level": "off",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["{docs/,.github/,}CONTRIBUTING.md"],
"content": "Shipping Releases",
"flags": "i",
"file-name": "CONTRIBUTING.md",
"file-content": "\n## Shipping Releases\nProcess for creating and publishing releases..."
}
}
},
"contributing-contains-documentation": {
"level": "warning",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["{docs/,.github/,}CONTRIBUTING.md"],
"content": "Documentation",
"flags": "i",
"file-name": "CONTRIBUTING.md",
"file-content": "\n## Documentation\nGuidelines for writing and updating documentation..."
}
}
},
"contributing-contains-policies": {
"level": "error",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["{docs/,.github/,}CONTRIBUTING.md"],
"content": "Policies",
"flags": "i",
"file-name": "CONTRIBUTING.md",
"file-content": "\n## Policies\nProject policies for contributors..."
}
}
},
"contributing-contains-open-source-policy": {
"level": "error",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["{docs/,.github/,}CONTRIBUTING.md"],
"content": "Open Source Policy",
"flags": "i",
"file-name": "CONTRIBUTING.md",
"file-content": "\n## Open Source Policy\nOpen source guidelines and requirements..."
}
}
},
"contributing-contains-security-and-responsible-disclosure-policy": {
"level": "error",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["{docs/,.github/,}CONTRIBUTING.md"],
"content": "Security and Responsible Disclosure Policy",
"flags": "i",
"file-name": "CONTRIBUTING.md",
"file-content": "\n## Security and Responsible Disclosure Policy\nGuidelines for reporting security issues..."
}
}
},
"contributing-contains-public-domain": {
"level": "error",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["{docs/,.github/,}CONTRIBUTING.md"],
"content": "Public domain",
"flags": "i",
"file-name": "CONTRIBUTING.md",
"file-content": "\n## Public Domain\nInformation about public domain status..."
}
}
},
"maintainers-contains-maintainers": {
"level": "off",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["{docs/,.github/,}MAINTAINERS.md"],
"content": "Maintainers",
"flags": "i",
"file-name": "MAINTAINERS.md",
"file-content": "\n## Maintainers\nList of project maintainers and responsibilities..."
}
}
},
"maintainers-contains-maintainers-list": {
"level": "off",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["{docs/,.github/,}MAINTAINERS.md"],
"content": "Maintainers:",
"flags": "i",
"file-name": "MAINTAINERS.md",
"file-content": "\n## Maintainers:\nCurrent project maintainers and their roles..."
}
}
},
"maintainers-contains-approvers-list": {
"level": "off",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["{docs/,.github/,}MAINTAINERS.md"],
"content": "Approvers:",
"flags": "i",
"file-name": "MAINTAINERS.md",
"file-content": "\n## Approvers:\nList of people who can approve changes..."
}
}
},
"maintainers-contains-reviewers-list": {
"level": "off",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["{docs/,.github/,}MAINTAINERS.md"],
"content": "Reviewers:",
"flags": "i",
"file-name": "MAINTAINERS.md",
"file-content": "\n## Reviewers:\nList of designated code reviewers..."
}
}
},
"governance-contains-governance": {
"level": "off",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["{docs/,.github/,}GOVERNANCE.md"],
"content": "Governance",
"flags": "i",
"file-name": "GOVERNANCE.md",
"file-content": "\n## Governance\nProject governance structure and processes..."
}
}
},
"code-owners-contains-list-of-users": {
"level": "off",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["{docs/,.github/,}CODEOWNERS.md"],
"content": "Code Owners",
"flags": "i",
"file-name": "CODEOWNERS.md",
"file-content": "\n## Code Owners\nList of code owners and their areas..."
}
}
},
"code-owners-contains-repo-domains": {
"level": "off",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["{docs/,.github/,}CODEOWNERS.md"],
"content": "documentation | frontend | backend | Repo Domains",
"flags": "i",
"file-name": "CODEOWNERS.md",
"file-content": "\n## Repository Domains\nBreakdown of different project areas..."
}
}
},
"community-guidelines-contains-principles": {
"level": "off",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["{docs/,.github/,}COMMUNITY_GUIDELINES.md"],
"content": "Principles",
"flags": "i",
"file-name": "COMMUNITY_GUIDELINES.md",
"file-content": "\n## Principles\nCore principles guiding our community..."
}
}
},
"community-guidelines-contains-community-guidelines": {
"level": "off",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["{docs/,.github/,}COMMUNITY_GUIDELINES.md"],
"content": "Community Guidelines",
"flags": "i",
"file-name": "COMMUNITY_GUIDELINES.md",
"file-content": "\n## Community Guidelines\nRules and expectations for community members..."
}
}
},
"community-guidelines-contains-acknowledgements": {
"level": "off",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["{docs/,.github/,}COMMUNITY_GUIDELINES.md"],
"content": "Acknowledgements",
"flags": "i",
"file-name": "COMMUNITY_GUIDELINES.md",
"file-content": "\n## Acknowledgements\nRecognition of community contributors..."
}
}
},
"code-of-conduct-contains-contributor-code-of-conduct": {
"level": "off",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["{docs/,.github/,}CODE_OF_CONDUCT.md"],
"content": "Contributor Code of Conduct",
"flags": "i",
"file-name": "CODE_OF_CONDUCT.md",
"file-content": "\n## Contributor Code of Conduct\nExpectations for contributor behavior..."
}
}
},
"code-of-conduct-contains-acknowledgements": {
"level": "off",
"rule": {
"type": "file-contents",
"options": {
"globsAll": ["{docs/,.github/,}CODE_OF_CONDUCT.md"],
"content": "Acknowledgements",
"flags": "i",
"file-name": "CODE_OF_CONDUCT.md",
"file-content": "\n## Acknowledgements\nRecognition of code of conduct sources..."
}
}
}
}
}