From a69004ab952c1e288c5b4032a3f3e944806aeadb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javi=20Mart=C3=ADn?= Date: Tue, 18 Dec 2018 19:36:56 +0100 Subject: [PATCH] Enable useless assignment rubocop rule This way deverlopers who don't run the ruby syntax check locally with warnings enabled will be informed by HoundCI. --- .rubocop_basic.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.rubocop_basic.yml b/.rubocop_basic.yml index cebf55084..522fec828 100644 --- a/.rubocop_basic.yml +++ b/.rubocop_basic.yml @@ -30,6 +30,9 @@ Layout/TrailingBlankLines: Layout/TrailingWhitespace: Enabled: true +Lint/UselessAssignment: + Enabled: true + Metrics/LineLength: Max: 100