mirror of
https://github.com/internetee/registry.git
synced 2025-08-08 10:45:10 +02:00
38 lines
767 B
YAML
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
|