OnkCop is a RuboCop configration gem.
onkcop basically ended with rubocop v0.53.0 in 2018. I'm not thinking about the acceptance of new cops. (Maintenance work will continue.)
Setup .rubocop.yml
bundle exec onkcop init
init
generate the following directive to your .rubocop.yml
:
inherit_gem:
onkcop:
- "config/rubocop.yml"
# uncomment if use rails cops
# - "config/rails.yml"
# uncomment if use rspec cops
# - "config/rspec.yml"
AllCops:
TargetRubyVersion: 2.5
bundle exec rubocop <options...>
Add this line to your application's Gemfile:
group :development do
gem "onkcop", require: false
end
Bug reports and pull requests are welcome on GitHub at https://github.com/onk/onkcop.
The gem is available as open source under the terms of the MIT License.