diff --git a/v3/template b/v3/template index c474cc41e..f3780cdf4 100644 --- a/v3/template +++ b/v3/template @@ -20,13 +20,15 @@ import ( ) func init() { - lint.RegisterLint(&lint.Lint{ - Name: "SUBTEST", - Description: "Fill this in...", - Citation: "Fill this in...", - Source: UnknownLintSource, - EffectiveDate: "Change this...", - Lint: func() lint.LintInterface { return &SUBST{} }, + lint.RegisterCertificateLint(&lint.CertificateLint{ + LintMetadata: lint.LintMetadata{ + Name: "SUBTEST", + Description: "Fill this in...", + Citation: "Fill this in...", + Source: UnknownLintSource, + EffectiveDate: "Change this...", + }, + Lint: NewPASCAL_CASE_SUBST, }) }