Add this line to your application's Gemfile:
gem 'rubocop-grape'
And then execute:
$ bundle install
You need to tell RuboCop to load the Grape extension. There are three ways to do this:
Put this into your .rubocop.yml
.
require: rubocop-grape
Alternatively, use the following array notation when specifying multiple extensions.
require:
- rubocop-other-extension
- rubocop-grape
Now you can run rubocop
and it will automatically load the RuboCop Grape
cops together with the standard cops.
Bug reports and pull requests are welcome on GitHub at https://github.com/kakubin/rubocop-grape.