sms-pager/.rubocop.yml

42 lines
612 B
YAML
Raw Normal View History

2015-09-12 15:37:05 -05:00
AllCops:
Exclude:
- db/schema.rb
- db/seeds.rb
- bin/**/*
2015-10-07 22:03:31 -05:00
Style/ClassAndModuleChildren:
Exclude:
- test/test_helper.rb
2015-09-12 15:37:05 -05:00
Style/Documentation:
Enabled: false
2015-10-07 22:03:31 -05:00
Style/EmptyLines:
Exclude:
- config/initializers/sorcery.rb
2015-09-12 15:37:05 -05:00
Style/IndentationConsistency:
EnforcedStyle: rails
2015-10-07 22:03:31 -05:00
Style/MethodDefParentheses:
Enabled: false
2015-09-12 15:37:05 -05:00
2015-10-07 22:03:31 -05:00
Style/StringLiterals:
Enabled: false
Metrics/AbcSize:
2015-09-12 15:37:05 -05:00
Exclude:
2015-10-07 22:03:31 -05:00
- db/migrate/**/*
2015-09-12 15:37:05 -05:00
Metrics/LineLength:
2015-10-07 22:03:31 -05:00
Max: 95
2015-09-12 15:37:05 -05:00
Exclude:
- Rakefile
- config/**/*
- lib/tasks/**/*
- test/test_helper.rb
2015-10-07 22:03:31 -05:00
Metrics/MethodLength:
2015-09-12 15:37:05 -05:00
Exclude:
2015-10-07 22:03:31 -05:00
- db/migrate/*