From 1e7f4a70aa869af8a2e2678b875f799212872d82 Mon Sep 17 00:00:00 2001 From: Christian Bruckmayer Date: Mon, 11 Jun 2018 13:10:31 +0200 Subject: [PATCH] [ci] Disable rubocop Capybara/FeatureMethods because our spec structure relies on that (e.g. subfolders), we need to fix it properly. --- .rubocop.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.rubocop.yml b/.rubocop.yml index c586385cf98e..0c913e36da1d 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -125,3 +125,8 @@ Rails/Output: # Disabled due to a bug Rails/BulkChangeTable: Enabled: false + +# Disabled as we currently violate it everywhere in spec/features directory +# we first need to discuss if we want to move this directory and then fix the violation +Capybara/FeatureMethods: + Enabled: false