class RuboCop::Faker::Plugin
A plugin that integrates RuboCop Faker with RuboCop’s plugin system.
def about
def about LintRoller::About.new( name: 'rubocop-faker', version: VERSION, homepage: 'https://github.com/koic/rubocop-faker', description: 'A RuboCop extension for Faker.' ) end
def rules(_context)
def rules(_context) LintRoller::Rules.new( type: :path, config_format: :rubocop, value: Pathname.new(__dir__).join('../../../config/default.yml') ) end
def supported?(context)
def supported?(context) context.engine == :rubocop end