rails_template/.rubocop.yml

33 lines
416 B
YAML
Raw Permalink Normal View History

require: rubocop-rails
Rails:
Enabled: true
AllCops:
TargetRubyVersion: 2.6
Exclude:
- '**/*.jbuilder'
- 'node_modules/**/*'
2020-03-22 09:44:05 -06:00
- 'db/schema.rb'
Documentation:
Enabled: false
LineLength:
Max: 120
Style/RaiseArgs:
EnforcedStyle: compact
Metrics/AbcSize:
Enabled: false
Metrics/MethodLength:
Max: 25
Exclude:
- 'spec/**/*.rb'
Metrics/BlockLength:
Exclude:
- 'spec/**/*.rb'