36 lines
515 B
YAML
36 lines
515 B
YAML
AllCops:
|
|
Exclude:
|
|
- db/schema.rb
|
|
- db/seeds.rb
|
|
- bin/**/*
|
|
|
|
Style/StringLiterals:
|
|
Enabled: false
|
|
|
|
Style/Documentation:
|
|
Enabled: false
|
|
|
|
Style/MethodDefParentheses:
|
|
Enabled: false
|
|
|
|
Style/IndentationConsistency:
|
|
EnforcedStyle: rails
|
|
|
|
Metrics/LineLength:
|
|
Max: 95
|
|
|
|
Metrics/MethodLength:
|
|
Exclude:
|
|
- db/migrate/*
|
|
|
|
Metrics/LineLength:
|
|
Exclude:
|
|
- Rakefile
|
|
- config/**/*
|
|
- lib/tasks/**/*
|
|
- test/test_helper.rb
|
|
|
|
Style/ClassAndModuleChildren:
|
|
Exclude:
|
|
- test/test_helper.rb
|