RuboCop Ipepe
Installation
Just install the rubocop-ipepe gem
gem install rubocop-ipepeor if you use bundler put this in your Gemfile
gem 'rubocop-ipepe', require: falseUsage
You need to tell RuboCop to load the Ipepe extension. There are three ways to do this:
RuboCop configuration file
Put this into your .rubocop.yml.
require: rubocop-ipepeAlternatively, use the following array notation when specifying multiple extensions.
require:
- rubocop-other-extension
- rubocop-ipepeNow you can run rubocop and it will automatically load the RuboCop Ipepe
cops together with the standard cops.
Command line
rubocop --require rubocop-ipepeRake task
RuboCop::RakeTask.new do |task|
task.requires << 'rubocop-ipepe'
endThe Cops
All cops are located under
lib/rubocop/cop/ipepe, and contain
examples/documentation.
In your .rubocop.yml, you may treat the Ipepe cops just like any other
cop. For example:
Ipepe/SpecificMatcher:
Exclude:
- spec/my_spec.rbIpepe/MultipleConditionUnless
Checks for multiple conditions in unless statement.
# bad
unless foo && bar
do_something
end
# good
if !(foo && bar)
do_something
endIpepe/TernaryOperator
Prohibits any use of ternary operator.
# bad
foo ? bar : baz
# good
if foo
bar
else
baz
endDevelopment
Adding a new cop
bundle exec rake 'new_cop[Ipepe/TestOperator]'
License
rubocop-ipepe is MIT licensed. See the accompanying file for
the full text.