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: I0eba348b7849f5fce9d758cdd44b79f589a3d4d4
Addresses: blueprint rubocop-integer
This commit is contained in:
Andy McCrae 2014-02-25 17:49:05 +00:00
parent a84a40d912
commit ccda638f11

View File

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