class Solargraph::Convention::Base

def environ

Returns:
  • (Environ) -
def environ
  EMPTY_ENVIRON
end

def match? source

Subclasses should override this method.
True if the source qualifies for this convention.
def match? source
  false
end

def process

Returns:
  • (Environ) -
def process
  match? ? EMPTY_ENVIRON : environ
end