From 2545d49aed9e03bc0842489557615929b50a9088 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javi=20Mart=C3=ADn?= Date: Thu, 20 Sep 2018 17:03:09 +0200 Subject: [PATCH] Don't allow trailing whitespaces in rubocop Luckily we don't have any trailing whitespaces around, but we might accidentally introduce some. --- .rubocop.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.rubocop.yml b/.rubocop.yml index f697dab0f..2bf64ceb0 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -25,6 +25,9 @@ Layout/IndentationConsistency: Layout/EndOfLine: EnforcedStyle: lf +Layout/TrailingWhitespace: + Enabled: true + Bundler/DuplicatedGem: Enabled: true