Class: LiquidLint::Matcher::Anything

Inherits:
Base
  • Object
show all
Defined in:
lib/liquid_lint/matcher/anything.rb

Overview

Will match anything, acting as a wildcard.

Instance Method Summary collapse

Instance Method Details

#match?Boolean

Returns:

  • (Boolean)

See Also:

  • LiquidLint::Matcher::Anything.{LiquidLint{LiquidLint::Matcher{LiquidLint::Matcher::Base{LiquidLint::Matcher::Base#match?}


7
8
9
# File 'lib/liquid_lint/matcher/anything.rb', line 7

def match?(*)
  true
end