retrospring/.rubocop.yml
Andreas Nedbal ab21a4ded3 Adjust .rubocop.yml to not throw warnings
Considering we're not actively checking code with rubocop at the moment, this should be okay for now. It's just a bit jarring having 20+ lines of rubocop complaining of unconfigured cops etc.
2020-05-11 19:38:07 +02:00

23 lines
322 B
YAML

AllCops:
NewCops: enable
Exclude:
- 'vendor/**/*'
- 'db/schema.rb'
Metrics/ClassLength:
Enabled: false
Layout/LineLength:
Enabled: false
Metrics/MethodLength:
Enabled: false
Metrics/ModuleLength:
Enabled: false
Style/ClassAndModuleChildren:
Enabled: false
Style/Documentation:
Enabled: false