Last active
December 10, 2015 18:19
-
-
Save natritmeyer/4473668 to your computer and use it in GitHub Desktop.
Rake task for Reek
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
IrresponsibleModule: | |
enabled: false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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