From c5d4bbd43481bf7edeca2c806d5ab0ca6ff5cee0 Mon Sep 17 00:00:00 2001 From: Ashwin Maroli Date: Wed, 23 Sep 2020 20:45:30 +0530 Subject: [PATCH] Exclude test files from a Layout RuboCop cop --- .rubocop.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.rubocop.yml b/.rubocop.yml index f44cf16f..0558f802 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -52,6 +52,10 @@ Layout/MultilineOperationIndentation: EnforcedStyle: indented Layout/SpaceAroundMethodCallOperator: Enabled: true +Layout/SpaceInsideHashLiteralBraces: + Enabled: true + Exclude: + - test/**/*.rb Lint/BinaryOperatorWithIdenticalOperands: Enabled: true