Skip to content

zfletch/zfletch-style

 
 

Repository files navigation

zfletch-style

Shared style configurations. Forked from the (now deprecated) gnar-style.

Installation

Add this line to your application's Gemfile:

group :development, :test do
  gem 'zfletch-style'
end

And then execute:

bundle

Or install it yourself as:

gem install zfletch-style

(See project at rubygems.org)

Usage

This Gem includes Rubocop, and it's not necessary to separately include Rubocop directly in your application's dependencies.

Inheriting from the Gem

Create a .rubocop.yml with the following configuration:

inherit_gem:
  zfletch-style:
    # Choose from one of these three
    - rubocop/rubocop.yml # if the pure Ruby style is all that's needed
    - rubocop/rubocop_gem.yml # if the application is a Gem
    - rubocop/rubocop_rails.yml # if the application is a Rails project

To check your application against these style configurations:

$ bundle exec rubocop

Overriding Styles

Example:

# In your app's .rubocop.yml
inherit_gem:
  zfletch-style:
    - "rubocop/rubocop.yml"

Metrics/BlockLength:
  Exclude:
    - specific_file.rb

Note that if you add in a local style exception in your own application after inheriting from zfletch-style, that will completely override zfletch-style's defaults.

About

Shared style configurations

Resources

License

Code of conduct

Stars

Watchers

Forks

Languages

  • Ruby 95.7%
  • Shell 4.3%