From dcef46924c937f7ff92b07e0bd9f14eefd6b5ca6 Mon Sep 17 00:00:00 2001 From: Maximilian Bosch Date: Mon, 23 Sep 2019 12:03:03 +0200 Subject: [PATCH] Disable newer rubocop rules Currently no time to fix those, we should probably pin the version though or fix them at some point. (cherry picked from commit e178db45b2fe860bbb301897e5f63ac00b664b71) --- .rubocop.yml | 6 ++++++ .travis.yml | 1 - 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.rubocop.yml b/.rubocop.yml index 2b29c28..3d6ed29 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -49,3 +49,9 @@ Style/RedundantBegin: Style/InverseMethods: Enabled: False + +Style/FrozenStringLiteralComment: + Enabled: false + +Style/NumericPredicate: + Enabled: false diff --git a/.travis.yml b/.travis.yml index d1a5920..488b47b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,6 @@ rvm: $RUBY_VERSION env: - PUPPET_VERSION="~> 4.3.0" RUBY_VERSION="2.4.0" TARGET=test - - PUPPET_VERSION="~> 4.10.12" STRICT_VARIABLES=yes RUBY_VERSION="2.4.0" TARGET=test - PUPPET_VERSION="~> 5.5.1" RUBY_VERSION="2.4.0" TARGET=test - PUPPET_VERSION="~> 6.0.3" RUBY_VERSION="2.5.1" TARGET=test - TARGET=acceptance RUBY_VERSION="2.5.1" BEAKER_setfile=spec/acceptance/nodesets/ubuntu-1604-x64.yml