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

rubocop-trailblazer

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rubocop-trailblazer

  • 0.1.2
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

Rubocop::Trailblazer

Rubocop::Trailblazer is a Ruby gem that provides additional RuboCop rules that are specifically useful for enforcing best practices and coding styles within projects using the Trailblazer architecture.

Installation

Install rubocop-trailblazer gem via the following command:

$ gem install rubocop-trailblazer

If you are using this gem within a project, add the following line in your Gemfile or gems.rb under the development and test groups:

group :development, :test do 
  gem 'rubocop-trailblazer', require: false 
end

Then run bundle install to install the gem.

Usage

Instruct RuboCop to load the Rubocop::Trailblazer extension. Specify this in your .rubocop.yml:

require:
  rubocop-other-extension
  rubocop-trailblazer

Alternatively, you can specify this in the command line:

$ rubocop --require rubocop-trailblazer

Or in a Rake task:

require 'rubocop/rake_task'

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

Contributing

We welcome contributions! For bug reports, feature requests, and pull requests, please feel free to visit our GitHub at https://github.com/seuros/rubocop-trailblazer.

When submitting a pull request, please ensure your changes are on a separate branch specific to the feature or issue. All updates should include tests.

License

This gem is open-source, available under the terms of the MIT License.

FAQs

Package last updated on 10 Jan 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