https://github.com/guard/guard
Raw File
Tip revision: 2866275fbba87a7f70441e94b74936a5a0c8e08d authored by Rémy Coutable on 17 April 2019, 20:40:10 UTC
Merge branch 'guard-api' of github.com:guard/guard into guard-api
Tip revision: 2866275
.rubocop.yml
inherit_from:
  - vendor/hound/config/style_guides/ruby.yml
  - .rubocop_todo.yml

# Files you want to exclude
AllCops:
  TargetRubyVersion: 2.2
  Exclude:
    - vendor/**/*
    - db/schema.rb
    - tmp/aruba/Guardfile
    - tmp/aruba/Gemfile
    - Guardfile
    - config/Guardfile

# TODO: put your overrides here:
back to top