brew/Library/Homebrew/formula_name_cask_token_auditor.rb
Patrick Linnane 89d1731f4c
formula_name_cask_token_auditor: use typed: strict
Signed-off-by: Patrick Linnane <patrick@linnane.io>
2024-08-13 12:04:31 -06:00

37 lines
1013 B
Ruby

# typed: strict
# frozen_string_literal: true
module Homebrew
class FormulaNameCaskTokenAuditor
sig { returns(String) }
attr_reader :token
sig { params(token: String).void }
def initialize(token)
@token = token
end
sig { returns(T::Array[String]) }
def errors
errors = []
errors << "uppercase letters" if token.match?(/[A-Z]/)
errors << "whitespace" if token.match?(/\s/)
errors << "non-ASCII characters" unless token.ascii_only?
errors << "double hyphens" if token.include?("--")
errors << "a leading @" if token.start_with?("@")
errors << "a trailing @" if token.end_with?("@")
errors << "a leading hyphen" if token.start_with?("-")
errors << "a trailing hyphen" if token.end_with?("-")
errors << "multiple @ symbols" if token.count("@") > 1
errors << "a hyphen followed by an @" if token.include? "-@"
errors << "an @ followed by a hyphen" if token.include? "@-"
errors
end
end
end