class LintRoller::Plugin
def about
def about raise Error.new("Please implement `about` and return an instance of LintRoller::About") end
def initialize(config = {})
def initialize(config = {}) @config = config end
def rules(context)
def rules(context) raise Error.new("Please implement `rules(context)` and return an instance of LintRoller::Rules") end
def supported?(context)
def supported?(context) true end