From 830987c6b039b53c395bd2ce7ad36ad6598bd44a Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Fri, 17 Jan 2020 12:51:08 +0900 Subject: [PATCH] [Fix #122] Fix `Exclude` paths that were not inherited Fixes #122. `Exclude` defined in RuboCop core was not inherited. https://github.com/rubocop-hq/rubocop/blob/v0.79.0/config/default.yml#L60-L64 This PR fixes `Exclude` paths that were not inherited. This bug was caused by #108. --- config/default.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config/default.yml b/config/default.yml index 35c987caee..065b8425c3 100644 --- a/config/default.yml +++ b/config/default.yml @@ -1,5 +1,9 @@ # Common configuration. +inherit_mode: + merge: + - Exclude + AllCops: Exclude: - bin/*