https://github.com/guard/guard
Raw File
Tip revision: 18a24afd04c6b46fa0f50d64dfd07bc2e6be5557 authored by Rémy Coutable on 12 September 2023, 07:26:17 UTC
Bump VERSION to 2.18.1
Tip revision: 18a24af
.rubocop.yml
inherit_from:
  - vendor/hound/config/style_guides/ruby.yml
  - .rubocop_todo.yml

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

# TODO: put your overrides here:
back to top