@oddessentials/repo-standards 2.1.0 → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
  **@oddessentials/repo-standards**
8
8
 
9
- This package defines a **single, authoritative JSON specification** for repository quality standards across multiple stacks (TypeScript/JS, C#/.NET, Python), plus deterministic tooling to generate **stack- and CI-specific views**.
9
+ This package defines a **single, authoritative JSON specification** for repository quality standards across multiple stacks (TypeScript/JS, C#/.NET, Python, Rust, and Go), plus deterministic tooling to generate **stack- and CI-specific views**.
10
10
 
11
11
  It is designed to be:
12
12
 
@@ -68,7 +68,7 @@ The master spec includes a `meta` block that defines system-wide expectations:
68
68
 
69
69
  ## Structure of `config/standards.json`
70
70
 
71
- - `version` — schema version (currently `3`)
71
+ - `version` — schema version (currently `2`)
72
72
  - `meta` — global rules and migration policy
73
73
  - `ciSystems` — supported CI platforms
74
74
  _(currently `github-actions`, `azure-devops`)_
@@ -101,8 +101,7 @@ Each checklist item includes:
101
101
  The `version` field indicates schema compatibility:
102
102
 
103
103
  - `1` — Original schema
104
- - `2` — Adds `bazelHints`, `meta.bazelIntegration` for Bazel support, `anyOfFiles`, `pinningNotes`
105
- - `3` — Enforces strict validation with `additionalProperties: false`. Adds enforcement/severity levels, ratio-based coverage thresholds, Rust/Go stacks, and refactors `bazelIntegration` → `executorHints.bazel`
104
+ - `2` — Adds `bazelHints`, `meta.executorHints.bazel` for Bazel support, `anyOfFiles`, `pinningNotes`, enforcement/severity levels, ratio-based coverage thresholds, Rust/Go stacks. Enforces strict validation with `additionalProperties: false`.
106
105
 
107
106
  Consumers should ignore unknown fields for forward compatibility.
108
107
 
@@ -666,5 +666,5 @@
666
666
  },
667
667
  "stack": "csharp-dotnet",
668
668
  "stackLabel": "C# / .NET",
669
- "version": 3
669
+ "version": 2
670
670
  }
@@ -666,5 +666,5 @@
666
666
  },
667
667
  "stack": "csharp-dotnet",
668
668
  "stackLabel": "C# / .NET",
669
- "version": 3
669
+ "version": 2
670
670
  }
@@ -735,5 +735,5 @@
735
735
  },
736
736
  "stack": "csharp-dotnet",
737
737
  "stackLabel": "C# / .NET",
738
- "version": 3
738
+ "version": 2
739
739
  }
@@ -657,5 +657,5 @@
657
657
  },
658
658
  "stack": "go",
659
659
  "stackLabel": "Go",
660
- "version": 3
660
+ "version": 2
661
661
  }
@@ -657,5 +657,5 @@
657
657
  },
658
658
  "stack": "go",
659
659
  "stackLabel": "Go",
660
- "version": 3
660
+ "version": 2
661
661
  }
@@ -726,5 +726,5 @@
726
726
  },
727
727
  "stack": "go",
728
728
  "stackLabel": "Go",
729
- "version": 3
729
+ "version": 2
730
730
  }
@@ -2394,5 +2394,5 @@
2394
2394
  "languageFamily": "js"
2395
2395
  }
2396
2396
  },
2397
- "version": 3
2397
+ "version": 2
2398
2398
  }
@@ -682,5 +682,5 @@
682
682
  },
683
683
  "stack": "python",
684
684
  "stackLabel": "Python",
685
- "version": 3
685
+ "version": 2
686
686
  }
@@ -682,5 +682,5 @@
682
682
  },
683
683
  "stack": "python",
684
684
  "stackLabel": "Python",
685
- "version": 3
685
+ "version": 2
686
686
  }
@@ -751,5 +751,5 @@
751
751
  },
752
752
  "stack": "python",
753
753
  "stackLabel": "Python",
754
- "version": 3
754
+ "version": 2
755
755
  }
@@ -667,5 +667,5 @@
667
667
  },
668
668
  "stack": "rust",
669
669
  "stackLabel": "Rust",
670
- "version": 3
670
+ "version": 2
671
671
  }
@@ -667,5 +667,5 @@
667
667
  },
668
668
  "stack": "rust",
669
669
  "stackLabel": "Rust",
670
- "version": 3
670
+ "version": 2
671
671
  }
@@ -736,5 +736,5 @@
736
736
  },
737
737
  "stack": "rust",
738
738
  "stackLabel": "Rust",
739
- "version": 3
739
+ "version": 2
740
740
  }
@@ -447,10 +447,10 @@
447
447
  "type": "object"
448
448
  }
449
449
  },
450
- "$id": "https://oddessentials.com/schemas/repo-standards/v3/standards.schema.json",
450
+ "$id": "https://oddessentials.com/schemas/repo-standards/v2/standards.schema.json",
451
451
  "$schema": "http://json-schema.org/draft-07/schema#",
452
452
  "additionalProperties": false,
453
- "description": "Schema for repo-standards master configuration (v3+). Enforces strict validation with additionalProperties: false.",
453
+ "description": "Schema for repo-standards master configuration (v2+). Enforces strict validation with additionalProperties: false.",
454
454
  "properties": {
455
455
  "checklist": {
456
456
  "$ref": "#/$defs/Checklist"
@@ -481,8 +481,8 @@
481
481
  "type": "object"
482
482
  },
483
483
  "version": {
484
- "description": "Schema version. Must be 3+ for strict validation with additionalProperties: false.",
485
- "minimum": 3,
484
+ "description": "Schema version. Must be 2+ for strict validation with additionalProperties: false.",
485
+ "minimum": 2,
486
486
  "type": "integer"
487
487
  }
488
488
  },
@@ -699,5 +699,5 @@
699
699
  },
700
700
  "stack": "typescript-js",
701
701
  "stackLabel": "TypeScript / JavaScript",
702
- "version": 3
702
+ "version": 2
703
703
  }
@@ -699,5 +699,5 @@
699
699
  },
700
700
  "stack": "typescript-js",
701
701
  "stackLabel": "TypeScript / JavaScript",
702
- "version": 3
702
+ "version": 2
703
703
  }
@@ -768,5 +768,5 @@
768
768
  },
769
769
  "stack": "typescript-js",
770
770
  "stackLabel": "TypeScript / JavaScript",
771
- "version": 3
771
+ "version": 2
772
772
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@oddessentials/repo-standards",
3
3
  "private": false,
4
- "version": "2.1.0",
4
+ "version": "3.0.0",
5
5
  "description": "Standards and CI filtering utilities for multi-stack repository governance.",
6
6
  "type": "module",
7
7
  "scripts": {