The project is in a healthy, maintained state
MLH Rubocop Config is a customized set of rules and guidelines for Ruby code.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Project Readme

MLH Rubocop Configuration

The MLH Rubocop Configuration provides a set of rules and guidelines for Ruby code.

Usage

To use the MLH Rubocop Configuration in your Ruby project, follow these steps:

  1. Add the MLH Rubocop Configuration gem to your Gemfile:

    gem "mlh-rubocop-config"
  2. In your project's .rubocop.yml file, include the MLH Rubocop Configuration by using the inherit_gem directive:

inherit_gem:
  mlh-rubocop-config: .rubocop.yml

Example

Here's an example of how your project's .rubocop.yml file might look like when using the MLH Rubocop Configuration:

# Inherit rules from the MLH Rubocop Configuration
inherit_gem:
  mlh-rubocop-config: .rubocop.yml

# Add project-specific rules or overrides
AllCops:
  Exclude:
    - spec/**/* # Exclude spec files from Rubocop analysis