# File lib/puppet-lint/plugin.rb, line 64
  def enabled_checks
    @enabled_checks ||= Proc.new do
      self.public_methods.select { |method|
        method.to_s.start_with? 'lint_check_'
      }.map { |method|
        method.to_s[11..-1]
      }.select { |name|
        PuppetLint.configuration.send("#{name}_enabled?")
      }
    end.call
  end