cookbook-openstack-block-st.../.rubocop.yml
Andy McCrae dd97ef9f5e 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: I179e2ced4aca4040098a268d6573b297ce4b32bc
Addresses: blueprint rubocop-integer
2014-02-25 17:44:37 +00:00

25 lines
305 B
YAML

AllCops:
Includes:
- metadata.rb
- Gemfile
- attributes/**
- libraries/**
- providers/**
- recipes/**
- resources/**
- spec/**
Encoding:
Exclude:
- metadata.rb
- Gemfile
NumericLiterals:
Enabled: false
LineLength:
Enabled: false
WordArray:
MinSize: 3