From a9bf5941d15e4ac8e95cb798c8fb392dd4d357b0 Mon Sep 17 00:00:00 2001 From: Tino Vazquez Date: Thu, 4 Apr 2019 17:45:32 +0200 Subject: [PATCH] L: Disable two new cops Introduced as defaults by rubocop 0.67.0 (cherry picked from commit f51b4fc6c9c52149b0c1c5122be5fb2f3a4818a8) --- share/linters/.rubocop.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/share/linters/.rubocop.yml b/share/linters/.rubocop.yml index 7554293cac..e6894a5311 100644 --- a/share/linters/.rubocop.yml +++ b/share/linters/.rubocop.yml @@ -717,6 +717,10 @@ Style/MutableConstant: Style/SymbolProc: Enabled: false +# TODO: Remove this whenever there is strenght to do so +Style/StderrPuts: + Enabled: false + ###### # LINT ###### @@ -799,6 +803,9 @@ Naming/ConstantName: Naming/HeredocDelimiterNaming: Enabled: false +Naming/RescuedExceptionsVariableName: + Enabled: false + ### # Bundler ####