Sha256: 8a4110ae025ea73c328626ef8f4b8b80a17a505b78cd6ad5bd3d280c198a347f

Contents?: true

Size: 878 Bytes

Versions: 8

Compression:

Stored size: 878 Bytes

Contents

# fablicop

fablicop is a RuboCop configration gem.

## Usage

Setup .rubocop.yml

```sh
bundle exec fablicop init
```

`init` generate the following directive to your `.rubocop.yml`:

```yaml
inherit_gem:
  fablicop:
    - "config/rubocop.yml"
    # uncomment if use rails cops
    # - "config/rails.yml"
    # uncomment if use rspec cops
    # - "config/rspec.yml"

AllCops:
  TargetRubyVersion: 2.4
  # uncomment if use rails cops
  # TargetRailsVersion: 5.1
```

```sh
bundle exec rubocop <options...>
```

## Installation

Add this line to your application's Gemfile:

```ruby
group :development do
  gem "fablicop", require: false
end
```

## Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/Fablic/fablicop.


## License

The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
fablicop-1.0.2 README.md
fablicop-1.0.1 README.md
fablicop-0.3.4 README.md
fablicop-0.3.3 README.md
fablicop-0.3.2 README.md
fablicop-0.3.1 README.md
fablicop-0.3.0 README.md
fablicop-0.2.0 README.md