From 3989a5ca089cd1775c09814deeb3f3649a375a69 Mon Sep 17 00:00:00 2001 From: Nate Riffe Date: Fri, 30 Mar 2018 09:46:29 -0500 Subject: [PATCH] Update rubocop config --- .rubocop.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.rubocop.yml b/.rubocop.yml index e09efb1..98f2c84 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -9,6 +9,8 @@ AllCops: # Ignore lib/** as it contains a lot of offenses for now. # TODO : fix lib/** offenses - 'lib/**/*' + # The Puppet pkg directory + - 'pkg/**/*' Lint/ConditionPosition: Enabled: true @@ -423,9 +425,6 @@ Style/NumericLiterals: Style/OneLineConditional: Enabled: false -Naming/BinaryOperatorParameter: - Enabled: false - Style/ParenthesesAroundCondition: Enabled: false @@ -482,3 +481,6 @@ Style/IfWithSemicolon: Style/Encoding: Enabled: false + +Style/FrozenStringLiteralComment: + Enabled: false