Important note

There is no IntelliJ IDEA's implementation of RuboCop. IntelliJ IDEA only executes the RuboCop installed by the users, reads the output and visualizes it in the editor.

Prerequisites

To make use of the RuboCop, make sure that the following prerequisites are met:

  • You are working with IntelliJ IDEA version 2017.1 or higher.
  • The gem rubocop is installed.

Using the RuboCop inspection

The RuboCop inspection is enabled by default. If your project SDK has the rubocop gem installed, then you’ll immediately see the results of this inspection in the Editor, in the same way as the other IntelliJ IDEA inspections.

Otherwise, IntelliJ IDEA suggests to install the missing gem to your projects’ SDK and enable this inspection:

images/rubocop_inspection.png

The banner shows only once per project. If you don’t want to use RuboCop in your project, just skip this notification.

Mapping of RuboCop severities to the IntelliJ IDEA severities is hardcoded the following way:

  • Refactor and Convention => Weak Warning
  • Warning => Warning
  • Error and Fatal => Error

It is impossible to change these severities manually.

To switch off RuboCop inspections, open Settings/Preferences dialog, open the page Inspections and then uncheck the inspection RuboCop:

images/rubocop_inspection_off.png