An open API service indexing awesome lists of open source software.

https://github.com/dvandersluis/rubocop_defaults

Rubocop default options for my projects
https://github.com/dvandersluis/rubocop_defaults

Last synced: about 1 year ago
JSON representation

Rubocop default options for my projects

Awesome Lists containing this project

README

          

# Rubocop Defaults

This gem just has my rubocop defaults for easy inclusion in other projects.

## Usage

Add this line to your application's Gemfile (to use the gem in another gem, put the `gem` call in `group :development` so that it is not added as a dependency when the gem is installed):

```ruby
gem 'rubocop_defaults', github: 'dvandersluis/rubocop_defaults'
```

Add the following to `.rubocop.yml`

```yaml
inherit_gem:
rubocop_defaults: .rubocop.yml

inherit_mode:
merge:
- Exclude
```