From a46cc82c8d2cf89361a4979739153d2751d03c3b Mon Sep 17 00:00:00 2001 From: Ricardo Trindade Date: Mon, 6 Jan 2020 23:30:31 +0000 Subject: [PATCH 1/2] bump rubocop to 0.79.0 --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 24be8a44e4..60ed05b49c 100644 --- a/Gemfile +++ b/Gemfile @@ -58,7 +58,7 @@ end gem "rubyzip", '~> 1.2' -gem 'rubocop', '~> 0.77.0' +gem 'rubocop', '~> 0.79.0' custom_gemfile = File.expand_path("../Gemfile-custom", __FILE__) eval_gemfile custom_gemfile if File.exist?(custom_gemfile) From ed87dfa6ee737496143b66d1c2c3613e3b0f329b Mon Sep 17 00:00:00 2001 From: Ricardo Trindade Date: Mon, 6 Jan 2020 23:30:50 +0000 Subject: [PATCH 2/2] supress rubocop warning by changing namespace --- .rubocop_todo.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml index c339a6c9c9..49a5217f8e 100644 --- a/.rubocop_todo.yml +++ b/.rubocop_todo.yml @@ -7,7 +7,7 @@ Metrics/CyclomaticComplexity: Max: 9 # default: 6 # Over time we'd like to get this down, but this is what we're at now. -Metrics/LineLength: +Layout/LineLength: Max: 186 # default: 80 # Over time we'd like to get this down, but this is what we're at now.