Skip to content

Instantly share code, notes, and snippets.

@natritmeyer
Last active December 10, 2015 18:19
Show Gist options
  • Save natritmeyer/4473668 to your computer and use it in GitHub Desktop.
Save natritmeyer/4473668 to your computer and use it in GitHub Desktop.
Rake task for Reek
IrresponsibleModule:
enabled: false
require 'reek/rake/task'
Reek::Rake::Task.new do |t|
t.config_files = "config.reek"
t.source_files = "**/*.rb"
t.fail_on_error = false
t.reek_opts = "-q" #only list smelly files
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment