Reek

Review Ruby code for code smells

Greg avatar
Written by Greg
Updated over a week ago

Hound uses Reek (v5.0.2) to review Ruby code for code smells, using Reek's default config.

To enable Reek, add the following to your .hound.yml file:

reek:
  enabled: true

To change the way Reek is configured simply add a .reek configuration file to your project and configure it according to your team's preferences. Take a look at the Reek documentation for more information.

reek:
  enable: true
  config_file: .reek

To disable Reek, add the following to your .hound.yml file:

reek:
  enabled: false
Did this answer your question?