23 lines
368 B
YAML
23 lines
368 B
YAML
AllCops:
|
|
Exclude:
|
|
- 'bin/*'
|
|
- 'db/schema.rb'
|
|
|
|
Style/ClassAndModuleChildren:
|
|
Exclude:
|
|
- 'test/**/*'
|
|
|
|
Style/Documentation:
|
|
Exclude:
|
|
- 'app/controllers/**/*'
|
|
- 'app/helpers/**/*'
|
|
- 'app/mailers/**/*'
|
|
- 'app/**/application_*'
|
|
- 'config/*'
|
|
- 'db/**/*'
|
|
- 'test/**/*'
|
|
|
|
Metrics/LineLength:
|
|
Max: 80
|
|
IgnoredPatterns: ['\A\s*#']
|