Reek
Language: Ruby
Checks: 30
Categories: Complexity
Reek Version: 6.0.5 (newer versions available using beta channel)
Reek is a Code smell detector for Ruby.
Enable the Plugin
To enable Reek analysis, add the following to your .codeclimate.yml
configuration file: :
plugins:
reek:
enabled: true
By default, we'll use our stable version of Reek, which runs Reek 6.0.5. To enable a newer version (Reek 6.1.4), you'll need to specify the beta channel in your .codeclimate.yml
.
plugins:
reek:
enabled: true
channel: beta
More information about the CLI is available in the README here: https://github.com/codeclimate/codeclimate
Configure the Plugin
Configuration documentation is available here: https://github.com/troessner/reek#configuration
Understand the Plugin
The Reek team has done a fantastic job explaining how to use their tool. Please check out their documentation here: https://github.com/troessner/reek#quickstart
Updated over 1 year ago