Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

rubocop-ipepe

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rubocop-ipepe

  • 0.2.5
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

RuboCop Ipepe

Gem Version CI

RuboCop.

Installation

Just install the rubocop-ipepe gem

gem install rubocop-ipepe

or if you use bundler put this in your Gemfile

gem 'rubocop-ipepe', require: false

Usage

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-ipepe

Alternatively, use the following array notation when specifying multiple extensions.

require:
  - rubocop-other-extension
  - rubocop-ipepe

Now you can run rubocop and it will automatically load the RuboCop Ipepe cops together with the standard cops.

Command line

rubocop --require rubocop-ipepe

Rake task

RuboCop::RakeTask.new do |task|
  task.requires << 'rubocop-ipepe'
end

The 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.rb

Ipepe/MultipleConditionUnless

Checks for multiple conditions in unless statement.

# bad
unless foo && bar
  do_something
end

# good
if foo || bar
  do_something
end

Ipepe/TernaryOperator

Prohibits any use of ternary operator.

# bad
foo ? bar : baz

# good
if foo
  bar
else
  baz
end

Development

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.

FAQs

Package last updated on 09 Apr 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc