(name, comment string, fn CheckFunc[ks.BothMeta])
| 86 | } |
| 87 | |
| 88 | func (c *Checks) RegisterMetaCheck(name, comment string, fn CheckFunc[ks.BothMeta]) { |
| 89 | reg(c, "all", name, comment, false, fn, c.metas) |
| 90 | } |
| 91 | |
| 92 | func (c *Checks) RegisterOptionalMetaCheck(name, comment string, fn CheckFunc[ks.BothMeta]) { |
| 93 | reg(c, "all", name, comment, true, fn, c.metas) |