Exclude useless helper methods

This commit is contained in:
Thomas Boerger 2019-08-01 01:07:41 +02:00
parent d5fd5d77c7
commit 6502a46a31
No known key found for this signature in database
GPG Key ID: 09745AFF9D63C79B
1 changed files with 5 additions and 1 deletions

View File

@ -134,13 +134,17 @@ func regexReplace(pattern string, input string, replacement string) string {
func invalidHelper(name string) bool { func invalidHelper(name string) bool {
invalids := []string{ invalids := []string{
"genPrivateKey",
"derivePassword",
"buildCustomCert", "buildCustomCert",
"fail",
"genSelfSignedCert", "genSelfSignedCert",
"genSignedCert", "genSignedCert",
"genCA", "genCA",
"fail",
"semver", "semver",
"semverCompare", "semverCompare",
"hello",
"trimall",
} }
for _, invalid := range invalids { for _, invalid := range invalids {