From bc836590ae124e89f98b04b34d55c2321f645e51 Mon Sep 17 00:00:00 2001 From: Martin Fenner Date: Wed, 10 Feb 2021 14:03:08 +0100 Subject: [PATCH] fix rubocop configuration --- .rubocop.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.rubocop.yml b/.rubocop.yml index 78e50f655..87e04a1e2 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -9,6 +9,7 @@ AllCops: # RuboCop has a bunch of cops enabled by default. This setting tells RuboCop # to ignore them, so only the ones explicitly set in this file are enabled. DisabledByDefault: true + SuggestExtensions: false Exclude: - '**/tmp/**/*' - '**/templates/**/*' @@ -22,7 +23,6 @@ AllCops: Performance: Exclude: - '**/test/**/*' -SuggestExtensions: false # Prefer assert_not over assert ! Rails/AssertNot: