Skip to content

Instantly share code, notes, and snippets.

@diegosparente
Created January 9, 2022 19:04
Show Gist options
  • Save diegosparente/fb2dc4e5c468491adcf09e54571df44d to your computer and use it in GitHub Desktop.
Save diegosparente/fb2dc4e5c468491adcf09e54571df44d to your computer and use it in GitHub Desktop.
RuboCop config
require:
- rubocop-performance
- rubocop-rails
- rubocop-minitest
AllCops:
TargetRubyVersion: 3.1.0
NewCops: enable
Exclude:
- 'db/**/*'
- 'script/**/*'
- 'bin/**/*'
Layout/LineLength:
Max: 120
Metrics/BlockLength:
Exclude:
- 'config/**/*'
- 'test/**/*'
# - spec/**/*
Lint/AmbiguousBlockAssociation:
Enabled: true
Style/Documentation:
Enabled: false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment