internetee-registry/.rubocop.yml
2014-09-25 13:45:05 +03:00

38 lines
767 B
YAML

AllCops:
RunRailsCops: true
Exclude:
- 'Guardfile'
# stuff generated by AR and rails
- 'db/schema.rb'
- 'db/migrate/*'
# epp support files until 'complexity issues' will be solved
- 'spec/support/epp.rb'
- 'spec/support/epp_contact_xml_builder.rb'
Metrics/LineLength:
Max: 120
Documentation:
Enabled: false
Style/Semicolon:
AllowAsExpressionSeparator: true
Style/AndOr:
Enabled: false
Style/BracesAroundHashParameters:
Enabled: false
Style/IndentHash:
Enabled: false
# No need to force reduce to use |a, e| as parameters.
# Configuration parameters: Methods.
Style/SingleLineBlockParams:
Enabled: false
# No need for nested module/class definition as far as I know
Style/ClassAndModuleChildren:
Enabled: false