gitsnitch 0.4.6

Lints your Git commit history against a declarative ruleset
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
{
  "$schema": "https://json-schema.org/draft/2019-09/schema",
  "$id": "https://example.com/gitsnitch/api_v1.schema.json",
  "title": "GitSnitch Config API (v1 draft)",
  "type": "object",
  "additionalProperties": false,
  "description": "GitSnitch configuration: commit validation rules, history healing, and severity bands. All properties are optional except api_version.",
  "properties": {
    "api_version": {
      "type": "string",
      "enum": [
        "pre"
      ],
      "default": "pre",
      "description": "API version. 'pre' indicates canary/unreleased—the schema is subject to change without notice. Future versions will enforce forward compatibility, but 'pre' carries no contract."
    },
    "history": {
      "anyOf": [
        {
          "$ref": "#/$defs/history"
        },
        {
          "type": "null"
        }
      ],
      "default": {
        "autoheal_shallow": "incremental",
        "autoheal_shallow_shift": 10,
        "autoheal_shallow_tries": 6
      },
      "description": "Git history healing settings. Null uses defaults. All sub-fields are optional and default independently."
    },
    "custom_meta": {
      "anyOf": [
        {
          "$ref": "#/$defs/customMeta"
        }
      ],
      "default": {}
    },
    "violation_severity_as_exit_code": {
      "$ref": "#/$defs/violationSeverityAsExitCode",
      "default": false,
      "description": "When true, the process exit code is the maximum violation severity (0 if all severities are 0). When false, violations do not affect process exit code."
    },
    "severity_bands": {
      "$ref": "#/$defs/severityBands",
      "default": {
        "Fatal": 250,
        "Error": 10,
        "Warning": 1,
        "Information": 0
      },
      "description": "Maps assertion severity (0–250) to band labels via threshold lookup. Default bands: Fatal (250), Error (10–249), Warning (1–9), Information (0).",
      "examples": [
        {
          "Fatal": 200,
          "Error": 10,
          "Warning": 2,
          "Information": 0
        }
      ]
    },
    "assertions": {
      "type": "array",
      "default": [],
      "items": {
        "$ref": "#/$defs/assertion"
      },
      "description": "List of validation assertions to apply to commits.",
      "minItems": 0,
      "maxItems": 1024,
      "examples": [
        [
          {
            "alias": "conventional-title",
            "must_satisfy": {
              "condition": {
                "type": "msg_match_any",
                "mode": "title",
                "patterns": [
                  "^(?i:feat|fix|docs|chore|refactor|test)(\\(.+\\))?: .+"
                ]
              }
            }
          },
          {
            "alias": "diff-size-threshold",
            "must_satisfy": {
              "condition": {
                "type": "threshold_compare",
                "metric": "line_count",
                "operator": "lte",
                "value": 500
              }
            }
          }
        ]
      ]
    }
  },
  "required": [
    "api_version"
  ],
  "$defs": {
    "patterns": {
      "description": "Regex patterns used by condition-specific match scopes.",
      "type": "array",
      "minItems": 1,
      "items": {
        "description": "regex patterns",
        "examples": [
          "^feat:",
          "(?i:breaking)",
          "\\d{4}-\\d{2}-\\d{2}",
          "^(docs|test)/"
        ],
        "type": "string",
        "minLength": 1,
        "maxLength": 2048,
        "pattern": ".*\\S\\.*"
      },
      "uniqueItems": true,
      "maxItems": 128
    },
    "history": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "autoheal_shallow": {
          "type": "string",
          "enum": [
            "never",
            "incremental",
            "full"
          ],
          "default": "incremental",
          "description": "Shallow history auto-heal strategy. incremental uses fixed exponential growth with factor 2."
        },
        "autoheal_shallow_shift": {
          "type": "integer",
          "minimum": 1,
          "default": 10,
          "description": "Initial deepen size when autoheal_shallow is incremental. Sequence per try is shift * 2^(try-1)."
        },
        "autoheal_shallow_tries": {
          "type": "integer",
          "minimum": 1,
          "default": 6,
          "description": "Maximum deepen attempts when autoheal_shallow is incremental."
        }
      },
      "required": [],
      "default": {
        "autoheal_shallow": "incremental",
        "autoheal_shallow_shift": 10,
        "autoheal_shallow_tries": 6
      }
    },
    "customMeta": {
      "type": "object",
      "description": "Extensible metadata bag. Validation rules can be tightened externally.",
      "maxProperties": 16,
      "minProperties": 0,
      "propertyNames": {
        "pattern": "^[a-zA-Z0-9_]+$"
      },
      "additionalProperties": {
        "type": "string",
        "minLength": 1,
        "maxLength": 2048
      },
      "default": {}
    },
    "assertion": {
      "type": "object",
      "description": "Single validation rule with required alias and must_satisfy condition. Optional skip_if can short-circuit evaluation.",
      "additionalProperties": false,
      "properties": {
        "skip": {
          "type": "boolean",
          "default": false,
          "description": "If true, permanently disable this assertion (ignore must_satisfy and skip_if)."
        },
        "alias": {
          "type": "string",
          "minLength": 1,
          "maxLength": 128,
          "pattern": "^\\S+$",
          "description": "Human-readable identifier for this assertion. Must be unique within the config; uniqueness is enforced at config load time."
        },
        "description": {
          "type": "string",
          "maxLength": 1024,
          "default": "",
          "description": "Human-readable description of what this assertion validates."
        },
        "banner": {
          "type": "string",
          "maxLength": 4096,
          "default": "",
          "description": "Violation banner as a Jinja2 template. Rendered with violation context. Empty string suppresses output."
        },
        "severity": {
          "$ref": "#/$defs/assertionSeverity",
          "description": "Numeric severity: 0–250. Higher means more severe. Mapped to band labels (Fatal, Error, Warning, Information) by severity_bands thresholds."
        },
        "hint": {
          "type": "string",
          "maxLength": 2048,
          "default": "",
          "description": "User-facing hint displayed when this assertion fails. Empty string suppresses hint."
        },
        "must_satisfy": {
          "$ref": "#/$defs/conditionContainer",
          "description": "Condition that must be true for the assertion to pass."
        },
        "skip_if": {
          "$ref": "#/$defs/conditionContainer",
          "description": "Optional condition: if true, skip this assertion (do not evaluate must_satisfy)."
        }
      },
      "required": [
        "alias",
        "must_satisfy"
      ],
      "examples": [
        {
          "alias": "conventional-title",
          "must_satisfy": {
            "condition": {
              "type": "msg_match_any",
              "mode": "title",
              "patterns": [
                "^(?i:feat|fix|docs|chore|refactor|test)(\\(.+\\))?: .+"
              ]
            }
          }
        },
        {
          "alias": "raw-message-shape",
          "must_satisfy": {
            "condition": {
              "type": "msg_match_any",
              "mode": "raw",
              "patterns": [
                "^[^\\n]+$|\\S[^\\n]*\\n\\n\\s*\\S+"
              ]
            }
          }
        },
        {
          "alias": "diff-size-threshold",
          "must_satisfy": {
            "condition": {
              "type": "threshold_compare",
              "metric": "line_count",
              "operator": "lte",
              "value": 500
            }
          }
        },
        {
          "alias": "no-unreviewed-trivyignore",
          "must_satisfy": {
            "condition": {
              "type": "msg_match_any",
              "mode": "body",
              "patterns": [
                "(^|\\n)Reviewed-By: @.+"
              ]
            }
          },
          "skip_if": {
            "condition": {
              "type": "diff_match_none",
              "mode": "line",
              "patterns": [
                "#\\s*trivyignore"
              ]
            }
          }
        }
      ]
    },
    "conditionContainer": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "condition": {
          "$ref": "#/$defs/condition"
        }
      },
      "required": [
        "condition"
      ]
    },
    "violationSeverityAsExitCode": {
      "type": "boolean",
      "default": false,
      "description": "If true, exit with the maximum violation severity. If false, violations are exit-code silent."
    },
    "assertionSeverity": {
      "type": "integer",
      "minimum": 0,
      "maximum": 250,
      "default": 10,
      "description": "Severity numeric value (0–250). Higher = more severe. Mapped to band labels via severity_bands."
    },
    "severityBandThreshold": {
      "type": "integer",
      "minimum": 0,
      "maximum": 250,
      "description": "Band threshold: severities >= this value are mapped to the band label."
    },
    "severityBands": {
      "type": "object",
      "description": "Fixed severity labels and lower-bound thresholds. Band resolution sorts thresholds by numeric value (descending) and picks the first threshold less than or equal to the assertion severity. Monotonic ordering and uniqueness are enforced at config-load time.",
      "additionalProperties": false,
      "properties": {
        "Fatal": {
          "$ref": "#/$defs/severityBandThreshold",
          "default": 250,
          "description": "Threshold for Fatal band (most severe)."
        },
        "Error": {
          "$ref": "#/$defs/severityBandThreshold",
          "default": 10,
          "description": "Threshold for Error band."
        },
        "Warning": {
          "$ref": "#/$defs/severityBandThreshold",
          "default": 1,
          "description": "Threshold for Warning band."
        },
        "Information": {
          "$ref": "#/$defs/severityBandThreshold",
          "default": 0,
          "description": "Threshold for Information band (least severe)."
        }
      },
      "required": [
        "Fatal",
        "Error",
        "Warning",
        "Information"
      ]
    },
    "conditionBase": {
      "type": "object",
      "description": "Base properties shared by all condition types.",
      "properties": {
        "name": {
          "type": "string",
          "maxLength": 256,
          "default": "",
          "description": "Human-readable name for this condition (for debugging/logging). Optional."
        }
      }
    },
    "condition": {
      "oneOf": [
        {
          "$ref": "#/$defs/messageCondition"
        },
        {
          "$ref": "#/$defs/diffMatchCondition"
        },
        {
          "$ref": "#/$defs/metaCondition"
        },
        {
          "$ref": "#/$defs/thresholdCondition"
        }
      ]
    },
    "messageCondition": {
      "description": "Message matching with explicit scope selected by mode. raw matches full commit message text. title matches title only. body matches body only.",
      "allOf": [
        {
          "$ref": "#/$defs/conditionBase"
        }
      ],
      "oneOf": [
        {
          "description": "raw mode: patterns matched against the full commit message (title + body).",
          "type": "object",
          "additionalProperties": false,
          "properties": {
            "name": {
              "type": "string",
              "maxLength": 256,
              "default": ""
            },
            "type": {
              "type": "string",
              "enum": [
                "msg_match_any",
                "msg_match_none"
              ],
              "description": "Message matching semantics: _match (pass if ANY pattern matches), _match_none (pass if NO patterns match)."
            },
            "mode": {
              "type": "string",
              "const": "raw",
              "description": "Match scope: raw—full commit message (title + body)."
            },
            "patterns": {
              "$ref": "#/$defs/patterns"
            }
          },
          "required": [
            "type",
            "mode",
            "patterns"
          ]
        },
        {
          "description": "title mode: patterns matched against commit title only.",
          "type": "object",
          "additionalProperties": false,
          "properties": {
            "name": {
              "type": "string",
              "maxLength": 256,
              "default": ""
            },
            "type": {
              "type": "string",
              "enum": [
                "msg_match_any",
                "msg_match_none"
              ],
              "description": "Message matching semantics: _match (pass if ANY pattern matches), _match_none (pass if NO patterns match)."
            },
            "mode": {
              "type": "string",
              "const": "title",
              "description": "Match scope: title—commit title only."
            },
            "patterns": {
              "$ref": "#/$defs/patterns"
            }
          },
          "required": [
            "type",
            "mode",
            "patterns"
          ]
        },
        {
          "description": "body mode: patterns matched against commit body only.",
          "type": "object",
          "additionalProperties": false,
          "properties": {
            "name": {
              "type": "string",
              "maxLength": 256,
              "default": ""
            },
            "type": {
              "type": "string",
              "enum": [
                "msg_match_any",
                "msg_match_none"
              ],
              "description": "Message matching semantics: _match (pass if ANY pattern matches), _match_none (pass if NO patterns match)."
            },
            "mode": {
              "type": "string",
              "const": "body",
              "description": "Match scope: body—commit body only."
            },
            "patterns": {
              "$ref": "#/$defs/patterns"
            }
          },
          "required": [
            "type",
            "mode",
            "patterns"
          ]
        }
      ]
    },
    "diffMatchCondition": {
      "description": "Diff matching with explicit scope selected by mode. Raw mode matches unified diff text. file matches changed file paths. line matches changed lines regardless of whether each line was added or removed.",
      "allOf": [
        {
          "$ref": "#/$defs/conditionBase"
        }
      ],
      "oneOf": [
        {
          "description": "Raw mode: patterns are matched against the full unified diff text (headers + hunks). Use this when you need to inspect patch structure, e.g. detect file additions or added lines by matching diff markers such as 'new file mode', '+++ b/<path>', or '+'-prefixed added content lines.",
          "type": "object",
          "additionalProperties": false,
          "properties": {
            "name": {
              "type": "string",
              "maxLength": 256,
              "default": ""
            },
            "type": {
              "type": "string",
              "enum": [
                "diff_match_any",
                "diff_match_none"
              ],
              "description": "Diff matching semantics: _any (pass if ANY pattern matches), _none (pass if NO patterns match)."
            },
            "mode": {
              "type": "string",
              "const": "raw",
              "description": "Match scope: raw—unified diff output."
            },
            "patterns": {
              "$ref": "#/$defs/patterns",
              "description": "Regex patterns evaluated against raw unified diff text. Example: detect whether file 'xyz' was added with '(?m)^\\+\\+\\+ b/xyz$'; detect whether a newly added line contains 'abc' with '(?m)^\\+.*abc.*$'."
            }
          },
          "required": [
            "type",
            "mode",
            "patterns"
          ]
        },
        {
          "description": "file mode: patterns matched against changed file paths only.",
          "type": "object",
          "additionalProperties": false,
          "properties": {
            "name": {
              "type": "string",
              "maxLength": 256,
              "default": ""
            },
            "type": {
              "type": "string",
              "enum": [
                "diff_match_any",
                "diff_match_none"
              ],
              "description": "Diff matching semantics: _any (pass if ANY pattern matches), _none (pass if NO patterns match)."
            },
            "mode": {
              "type": "string",
              "const": "file",
              "description": "Match scope: file—changed file paths."
            },
            "patterns": {
              "description": "Patterns matched against changed file paths in the diff.",
              "$ref": "#/$defs/patterns"
            }
          },
          "required": [
            "type",
            "mode",
            "patterns"
          ]
        },
        {
          "description": "line mode: patterns matched against changed lines only, regardless of whether each line was added or removed.",
          "type": "object",
          "additionalProperties": false,
          "properties": {
            "name": {
              "type": "string",
              "maxLength": 256,
              "default": ""
            },
            "type": {
              "type": "string",
              "enum": [
                "diff_match_any",
                "diff_match_none"
              ],
              "description": "Diff matching semantics: _any (pass if ANY pattern matches), _none (pass if NO patterns match)."
            },
            "mode": {
              "type": "string",
              "const": "line",
              "description": "Match scope: line—changed lines (added or removed)."
            },
            "patterns": {
              "description": "Patterns matched against changed lines in the diff, regardless of whether the line was added or removed.",
              "$ref": "#/$defs/patterns"
            }
          },
          "required": [
            "type",
            "mode",
            "patterns"
          ]
        }
      ]
    },
    "metaCondition": {
      "allOf": [
        {
          "$ref": "#/$defs/conditionBase"
        },
        {
          "type": "object",
          "additionalProperties": false,
          "properties": {
            "name": {
              "type": "string",
              "maxLength": 256,
              "default": ""
            },
            "type": {
              "type": "string",
              "enum": [
                "branch_match"
              ],
              "description": "Metadata condition: match by branch name."
            },
            "patterns": {
              "type": "array",
              "minItems": 1,
              "maxItems": 128,
              "default": [],
              "items": {
                "type": "string",
                "minLength": 1,
                "maxLength": 2048,
                "pattern": ".*\\S\\.*",
                "description": "Branch name pattern (regex)."
              },
              "description": "List of branch name patterns to match."
            }
          },
          "required": [
            "type"
          ]
        }
      ]
    },
    "thresholdCondition": {
      "allOf": [
        {
          "$ref": "#/$defs/conditionBase"
        },
        {
          "type": "object",
          "additionalProperties": false,
          "properties": {
            "name": {
              "type": "string",
              "maxLength": 256,
              "default": ""
            },
            "type": {
              "type": "string",
              "enum": [
                "threshold_compare"
              ],
              "description": "Threshold condition: compare a metric against a numeric bound."
            },
            "metric": {
              "type": "string",
              "enum": [
                "line_count",
                "file_count"
              ],
              "description": "Metric to compare: line_count (total diff lines), file_count (number of changed files)."
            },
            "operator": {
              "type": "string",
              "enum": [
                "lte",
                "gte"
              ],
              "description": "Comparison operator: lte (less-than-or-equal), gte (greater-than-or-equal)."
            },
            "value": {
              "type": "integer",
              "minimum": 0,
              "maximum": 1000000,
              "description": "Threshold value for comparison (0–1,000,000)."
            }
          },
          "required": [
            "type",
            "metric",
            "operator",
            "value"
          ]
        }
      ]
    }
  },
  "examples": [
    {
      "api_version": "pre"
    }
  ]
}