Sha256: ed261aa8d39339de0a075b688d3f97dcb41454bd2d9298da10dea7eb4856406c

Contents?: true

Size: 875 Bytes

Versions: 5

Compression:

Stored size: 875 Bytes

Contents

# My rubocop setup

Config in `./config`

## Installation

Add `rubocop-rickselby` to your Gemfile:

```ruby

group :development, :test do
  gem "rubocop-rickselby", "~> 0.10", require: false
end
```

Inherit the desired configuration in your `.rubocop.yml`:

```yaml
# .rubocop.yml
inherit_gem:
  rubocop-rickselby:
    - config/default.yml # generic Ruby rules and cops
    - config/capybara.yml # capybara-specific rules and cops
    - config/factory_bot.yml # factory_bot-specific rules and cops
    - config/rails.yml # Rails-specific rules and cops
    - config/rspec.yml # RSpec-specific rules and cops
    - config/sequel.yml # sequel-specific rules and cops
```

## Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/rickselby/rubocop-rickselby.

## License
The gem is available as open source under the terms of the MIT License.

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
rubocop-rickselby-0.14.0.pre.4 README.md
rubocop-rickselby-0.14.0.pre.3 README.md
rubocop-rickselby-0.14.0.pre.2 README.md
rubocop-rickselby-0.14.0.pre.1 README.md
rubocop-rickselby-0.13.0 README.md