From 5db1d7c468882cc13ad89a001e46a667b7221efb Mon Sep 17 00:00:00 2001 From: Dafydd Jones Date: Thu, 13 Feb 2020 23:45:30 +0000 Subject: [PATCH] chore(rubocop): move `LineLength` cop from `Metrics` to `Layout` * Changed in RuboCop v0.78.0 https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md#0780-2019-12-18 --- .rubocop.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.rubocop.yml b/.rubocop.yml index 09016b9..3b6c0b8 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -2,7 +2,7 @@ # vim: ft=yaml --- # General overrides used across formulas in the org -Metrics/LineLength: +Layout/LineLength: # Increase from default of `80` # Based on https://github.com/PyCQA/flake8-bugbear#opinionated-warnings (`B950`) Max: 88