Code style checking for Sequel.
Using the rubocop-sequel
gem
gem install rubocop-sequel
or using bundler by adding in your Gemfile
gem 'rubocop-sequel'
Add to your .rubocop.yml
.
require: rubocop-sequel
rubocop
will now automatically load RuboCop Sequel
cops alongside with the standard cops.
rubocop --require rubocop-sequel
RuboCop::RakeTask.new do |task|
task.requires << 'rubocop-sequel'
end