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
This commit is contained in:
Andy McCrae 2014-02-25 17:56:59 +00:00
parent c6080e0104
commit 5ea68c53e0
1 changed files with 3 additions and 0 deletions

View File

@ -14,6 +14,9 @@ Encoding:
- metadata.rb
- Gemfile
NumericLiterals:
Enabled: false
LineLength:
Enabled: false