From 5ea68c53e0c476d8d0566a0a9922440416641889 Mon Sep 17 00:00:00 2001 From: Andy McCrae Date: Tue, 25 Feb 2014 17:56:59 +0000 Subject: [PATCH] Disable the NumericLiterals cop for rubocop - Disable the NumericLiterals cop in the .rubocop.yml file - this cop enforces an underscore '_' every 3 characters of an integer. This doesn't make much sense in our use case and reduces readability. Especially for port numbers. Change-Id: Id4668757f304ca6fe3e7f0809c917f30cfa07636 Addresses: blueprint rubocop-integer --- .rubocop.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.rubocop.yml b/.rubocop.yml index 8dc6194..5500e6d 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -14,6 +14,9 @@ Encoding: - metadata.rb - Gemfile +NumericLiterals: + Enabled: false + LineLength: Enabled: false