From 41c274b8837d60ffbf644e78e03c1276fb2fbc41 Mon Sep 17 00:00:00 2001 From: Claudio Bley Date: Tue, 9 Apr 2019 18:25:06 +0200 Subject: [PATCH] Disable the `Style/StderrPuts` cop I do not want to use `warn` since these errors should not be suppressed. And I always want to use `STDERR`, not `$stderr`. --- .rubocop.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.rubocop.yml b/.rubocop.yml index 484dbb6..95adeee 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -79,6 +79,9 @@ Style/EmptyCaseCondition: Style/MultilineBlockChain: Enabled: false +Style/StderrPuts: + Enabled: false + # Current preferred metrics -------------------------------------------- # Better values are encouraged, but not required. Metrics/AbcSize: