No release in over 3 years
Pragmatic Ruby Styling for Projects.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Project Readme

Pragmatic Ruby Styling for Projects

Gem Version CI

Installation

gem "rubocop-pragmatic", require: false, group: [:development]

Run bundle, then bundle binstubs rubocop.

Add a default .rubocop.yml file in the root of your Rails application with:

inherit_gem:
  rubocop-pragmatic: rails.yml

# Your own specialized rules go here

For a ruby gem or project (not using Rails):

inherit_gem:
  rubocop-pragmatic: ruby.yml

# Your own specialized rules go here

Or to customize your own combination:

inherit_gem:
  rubocop-pragmatic:
    - rubocop.yml
    - rubocop-factory_bot.yml
    - rubocop-md.yml
    - rubocop-minitest.yml
    - rubocop-performance.yml

inherit_mode:
  merge:
    - Exclude

# Your own specialized rules go here

License

MIT License