Skip to content

kakubin/rubocop-grape

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Feb 17, 2025
52c789c · Feb 17, 2025

History

69 Commits
Feb 17, 2025
Aug 21, 2022
Aug 21, 2022
Apr 9, 2024
Feb 17, 2025
Jul 13, 2022
Apr 9, 2024
Apr 4, 2024
Jul 13, 2022
Feb 17, 2025
Feb 17, 2025
Jul 13, 2022
Aug 21, 2022
Feb 17, 2025
Jul 13, 2022
Feb 17, 2025

Repository files navigation

RuboCop Grape

Actions Status

RuboCop extension for Grape.

Installation

Add this line to your application's Gemfile:

gem 'rubocop-grape'

And then execute:

$ bundle install

Usage

You need to tell RuboCop to load the Grape extension. There are three ways to do this:

RuboCop configuration file

Put this into your .rubocop.yml.

plugins: rubocop-grape

Alternatively, use the following array notation when specifying multiple extensions.

plugins:
  - rubocop-other-extension
  - rubocop-grape

Now you can run rubocop and it will automatically load the RuboCop Grape cops together with the standard cops.

Note

The plugin system is supported in RuboCop 1.72+. In earlier versions, use require instead of plugins.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/kakubin/rubocop-grape.