0.01
Low commit activity in last 3 years
No release in over a year
A RuboCop extension to enforce common code style in Jekyll and Jekyll plugins
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

RuboCop Jekyll

A RuboCop extension to enforce common code style in Jekyll and Jekyll plugins.

Gem Version RuboCop Support

Installation

Just install the rubocop-jekyll gem

gem install rubocop-jekyll

or if you prefer Bundler, add it to your Gemfile or gemspec

# Gemfile

gem "rubocop-jekyll", "~> 0.13.0"
# <plugin>.gemspec

spec.add_development_dependency "rubocop-jekyll", "~> 0.13.0"

and run bundle install

Usage

You need to tell RuboCop to load the extension and inherit the custom RuboCop configuration advocated by Jekyll.

Place the following at the top of your .rubocop.yml.

require: rubocop-jekyll
inherit_gem:
  rubocop-jekyll: .rubocop.yml

Running bundle exec rubocop will now automatically load the rubocop-jekyll cops together with the standard cops.

Customization

You can override any settings inherited from the extension by subsequently redefining the concerned parameters.

Release Cycle

A new release of this gem is manually cut based on the adoption of the latest version of RuboCop by the Jekyll repository:

  1. RuboCop releases a new version.
  2. The master branch of Jekyll repository is updated to the latest RuboCop version along with any updates to their .rubocop.yml.
  3. The RuboCop version and .rubocop.yml at this gem's repository is updated via a pull request.
  4. A new minor release is subsequently cut and shipped.

Note: A patch version of this gem will be released if Jekyll repository updates their .rubocop.yml independently of a RuboCop version bump.