From 97ec8776abf8d215ee0b5ad516c396f1ef1fe1a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javi=20Mart=C3=ADn?= Date: Tue, 10 Sep 2019 22:04:53 +0200 Subject: [PATCH] Reduce severity of LineLength rule Since we're ignoring this rule in many places, we're marking it in a different way so it's clear we're not as strict with this rule. --- .rubocop_basic.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.rubocop_basic.yml b/.rubocop_basic.yml index 88fdf0f9c..041ccd935 100644 --- a/.rubocop_basic.yml +++ b/.rubocop_basic.yml @@ -122,6 +122,7 @@ Lint/UselessAssignment: Metrics/LineLength: Max: 110 + Severity: refactor Rails/ActionFilter: Enabled: true