metanorma-cc 2.8.9 → 2.8.11

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cff8c8e6a4774b9702898a6535121d7e7fa776f82fd8c3a9f7d3c4850a98d96b
4
- data.tar.gz: eb0f1f93e45c4e3b036e3f4d39a3886c94bfe452b97d43c066ce74987859f966
3
+ metadata.gz: 98ce3944ca66867d78ec838a11becca97a761833b289edbd163a2bdd49ce0ed8
4
+ data.tar.gz: d2f1a5e45c3cce9a1630991e4cc11409169ff5cf2571c828d4d0d188e0825927
5
5
  SHA512:
6
- metadata.gz: 7713d279a188d4cfdf30df080724e4f3acd98ac165d79f5182e3ef861472faf20c944cf64de9ae260edee488c22c221edd3d8a7770dd3c5c99659bd7db34c133
7
- data.tar.gz: d7b00805a00f7f69ba0ea28900c333a7898654d4d7c6ee90307b8fc52e4df1a5ec7000f713acf96b5b25244e9055cfebd99b1b45f827db751e79e931375d7c26
6
+ metadata.gz: f61c7e1d1ac2bf99dab81accb1f183388d3464df020ff48f45da2e6bba55255a2a79f0a419219a805f68d02901c7ba99a7dbdde044d7c6f5053fe57b125fc5de
7
+ data.tar.gz: 7bffcdf95f9b4df56c77b336e00b3cc5f1b1900294f97879564f51f0901d9618b7e7e3f15186b5759bf160a3e10eda2fa8e65e12f30e4e62394e752af498f38a
data/.rubocop.yml CHANGED
@@ -2,6 +2,15 @@
2
2
  # See https://github.com/metanorma/cimas
3
3
  inherit_from:
4
4
  - https://raw.githubusercontent.com/riboseinc/oss-guides/main/ci/rubocop.yml
5
+ # .rubocop_todo.yml MUST be the last entry. inherit_from is last-wins:
6
+ # if listed before oss-guides, the shared config's stricter Metrics/
7
+ # (MethodLength, BlockLength, etc.) rules override the todo's per-file
8
+ # grandfathering, and the todo becomes inert on those cops. Empirically
9
+ # verified on suma 2026-07-06: with todo listed first, 34 Metrics/* offenses
10
+ # remained; moved last, cleared. Every gem in the metanorma-org fleet
11
+ # already ships a `.rubocop_todo.yml` on its live tree (audited 2026-07-06,
12
+ # 54/54 have it), so this reference is safe to emit unconditionally.
13
+ - .rubocop_todo.yml
5
14
 
6
15
  # Rubocop plugins enabled centrally so every metanorma-org gem picks them up
7
16
  # on cimas sync — best practice belongs at the shared-template layer, not